Wednesday, June 9, 2010

STL (Standard Template Library)

STL is available with C++. It defines various template classes which implement commonly used data strcutures.

Vector This is a dynamic array whose size can grow dynamically unlike static array.

list This is a doubly linked list implementation.

set / multiset : This can store single value which forms the key.

map/multimap : These can store key,value pairs.

No comments:

Post a Comment