Contents  1-5  6-11  12-16  17-21  22-27   28-33  34 - 38  39-46  Projects   MFC

   Contact
   Search
   C
   C++
   Visual Basic
   Java
   JavaScript
   DHTML
   Style Sheets
   About
   Active X
   TDC Binding
   PHP
   Perl and CGI
   Flash
   XML
   SQL
   Messages
   Chat
   MCSE
   Linux
   Cabling   
   ActionScript
   Downloads
   E-Cards   
 
    
    

The Standard Template Library (STL) is a general library  of algorithms and data structures.  All of the STL's
objects and classes follow the structure convention of C++ templates.  Some of the most useful objects and
methods from the STL are:

 

  • vector -  resembles a C++ array, holds objects of the same type, each object can be accessed by index.
     
  • sort - algorithm that orders a STL container's contents in ascending order.
     
  • list - STL container class comprised of a linked list type data structure by using iterators.
     
  • iterator - functions like a pointer in STL containers.
     
  • find - searches a subrange of elements in a container looking for an element that matches a specified value.

 

 


©2004 C. Germany