Changes between Version 2 and Version 3 of code/howto/STL
- Timestamp:
- Oct 8, 2008, 2:21:02 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/howto/STL
v2 v3 7 7 || '''set''' || Comparable with a search-tree || Fast if you have to decide if an element is within the set or not || 8 8 || '''map''' || Every element has a key || Fast if you have to find elements identified by a key || 9 10 == Reference == 11 For more information have a look at the [http://www.cplusplus.com/reference/stl/ reference]. 9 12 10 13 == Usage ==