Main menu
Forums
C++ Tutorial
::Introduction
::Basics of C++ ::Control structures ::Compound Data Types ::C style functions in C++ ::Object Oriented Programming ::The Standard Template Library (STL) |
www.cpp4u.com > C++ Tutorials > STL TutorialsSTL TutorialsSTL TutorialsWeb-pages STL Tutorial - http://www.cs.brown.edu/people/jak/proglang/cpp/stltut/tut.html
this website contains complete information about the Standard Template Library C++ Vectors - http://www.cppreference.com/cppvector/
Information about Vectors in Standard template Library C++ Double-ended Queues - http://www.cppreference.com/cppdeque/
Double-ended queues are like vectors, except that they allow fast insertions and deletions at the beginning (as well as the end) of the container.
C++ Lists - http://www.cppreference.com/cpplist/
Lists are sequences of elements stored in a linked list. Compared to vectors, they allow fast insertions and deletions, but slower random access. C++ Priority Queues - http://www.cppreference.com/cpppriority_queue/
C++ Priority Queues are like queues, but the elements inside the the data structure are ordered by some predicate. C++ Queue - http://www.cppreference.com/cppqueue/
The C++ Queue is a container adapter that gives the programmer a FIFO (first-in, first-out) data structure. C++ Stack - http://www.cppreference.com/cppstack/
The C++ Stack is a container adapter that gives the programmer the functionality of a stack -- specifically, a FILO (first-in, last-out) data structure. C++ Set - http://www.cppreference.com/cppset/
The C++ Set is an associative container that contains a sorted set of unique objects.
C++ Multisets - http://www.cppreference.com/cppmultiset/
C++ Multisets are like sets, in that they are associative containers containing a sorted set of objects, but differ in that they allow duplicate objects.
C++ Maps - http://www.cppreference.com/cppmap/
C++ Maps are sorted associative containers that contain unique key/value pairs. C++ Multimaps - http://www.cppreference.com/cppmultimap/
C++ Multimaps are like maps, in that they are sorted associative containers, but differ from maps in that they allow duplicate keys.
C++ Bitsets - http://www.cppreference.com/cppbitset/
C++ Bitsets give the programmer a set of bits as a data structure. Bitsets can be manipulated by various binary operators such as logical AND, OR, and so on.
Iterators - http://www.cppreference.com/iterators.html
Iterators are used to access members of the container classes, and can be used in a similar manner to pointers. For example, one might use an iterator to step through the elements of a vector. There are several different types of iterators:
Microsoft C++ standard library information - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang98/HTML/INDEX.asp
A C++ program can call on a large number of functions from the Standard C++ library. These functions perform essential services such as input and output. They also provide efficient implementations of frequently used operations. Numerous function and class definitions accompany these functions to help you to make better use of the library Standard Template Library for C++ - http://www.infosys.tuwien.ac.at/Research/Component/tutorial/prwmain.htm
This tutorial should give the interested reader a comprehensive survey on the Standard Template Library and should enable him to use the STL programming technique in his own programs. BOOST C++ - http://www.boost.org/
The Boost web site provides free peer-reviewed portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. The libraries are intended to be widely useful, and are in regular use by thousands of programmers across a broad spectrum of applications. the Standard Template Library - http://www.sgi.com/tech/stl/table_of_contents.html
Contains a good list of STL Functions and its uasge \tRogue Wave Online Documentation - http://www.roguewave.com/support/docs/sourcepro/stdlibug/index.html
Standard C++ Library User Guide and Tutorial for Rogue Waves STL implementation. Linux Tutorial: - C++ STL Tutorial - http://www.yolinux.com/TUTORIALS/LinuxTutorialC++STL.html
Example of a doubly linked list using STL. \tPhil Ottewell's STL Tutorial - http://www.pottsoft.com/home/stl/stl.htmlx
A tutorial about the C++ STL, suitable for readers with C++ experience including examples and working program samples. \tLinux Tutorial: - C++ String Class Tutorial - http://www.yolinux.com/TUTORIALS/LinuxTutorialC++StringClass.html
String class C++ examples. \tC++ Standard Template Library - string - http://www.msoe.edu/eecs/cese/resources/stl/index.htm
A general introduction to the string class of the STL. \tIntroduction to STL taken from Linux Gazette #34 - http://www.linuxgazette.com/issue34/field.html
Another Introduction to the Standard Template Library An Introductory STL tutorial - http://www.codeproject.com/vcpp/stl/stlintroduction.asp
Hosted on The Code Project, this tutorial gives a basic introduction of the concepts of the STL. \tSTL Tutorial - http://www.decompile.com/html/tut.html
A STL Tutorial including some graphic explanations. \tMicrosoft MSDN: Standard C++ Library Reference - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang98/HTML/stdlbhm.asp
The Online Reference for the Microsoft STL Library Implementation at MSDN. \tSTL Manual and Source - http://www.cs.utexas.edu/users/lavender/courses/stl/
A downloadable manual for STL and pointers to a faq and source for an implementation of the STL. Introduction to the C++ Standard Template Library - http://www.semantics.org/courses/stl.html
A basic STL introduction course offered by Semantics Consulting, Inc. STL Algorithms - http://www.camtp.uni-mb.si/books/Thinking-in-C++/Chapter05.html
Chapter 5 of Bruce Eckel's "Thinking in C++", 2nd ed., Volume 2, Revision 2. Advanced STL Programming - http://www.semantics.org/courses/advstl.html
A course for experienced STL programmers, offered by Semantics Consulting, Inc. \tThe Standard Template Library Tutorial - http://shamir.ebizlab.hit.bme.hu/docs/programming/C++/STL_tutorial/
A comprehensive tutorial for first time users of the STL. By Johannes Weidl. \tUVACS Software Engineering:HP C++ STL FAQ - http://www.cs.virginia.edu/~uvase/text/hp_stl_faq.html
HP C++ Standard Template Library FAQ, not updated for a long time, but still contains some useful information. \tA Tiny STL primer - http://academic1.bellevue.edu/cpphome/stl/tiny_stl.htm
A short description of the STL by David Harvey with links to other pages. \tThe C++ Standard Template Library Overview - http://pages.cpsc.ucalgary.ca/~kremer/STL/
Another Online Tutorial about STL. \tHow to setup STLport with Visual C++ 7 - http://www.geocities.com/simudream/Tutorial2STLport
A short tutorial how to get STLport to work with Microsoft Visual Studio 7 (.NET). \tMastering the STL - http://archive.devx.com/upload/free/features/vcdj/2000/04apr00/bw0400/bw0400.asp
A short introductionary tutorial about the STL. Partly Microsoft Visual C++ oriented. YoLinux Tutorial: C++ STL (Standard Template Library) - http://yolinux.com/TUTORIALS/LinuxTutorialC++STL.html
C++ - http://www.deitel.com/articles/cplusplus_tutorials/20051209/index.html
|
Links
C++ creator
www.cplusplus.com www.cppreference.com www.cprogramming.com www.bloodshed.net gcc.gnu.org cplus.about.com Top Categories
|