Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 2 and Version 3 of code/howto/STL


Ignore:
Timestamp:
Oct 8, 2008, 2:21:02 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/howto/STL

    v2 v3  
    77|| '''set''' || Comparable with a search-tree || Fast if you have to decide if an element is within the set or not ||
    88|| '''map''' || Every element has a key || Fast if you have to find elements identified by a key ||
     9
     10== Reference ==
     11For more information have a look at the [http://www.cplusplus.com/reference/stl/ reference].
    912
    1013== Usage ==