Page 1 of 1
The STL Library
Posted: Fri Dec 02, 2005 2:56 am
by The^Guard
Hey... I am quite new in C++ programming (I've used Pascal before), and I want to learn the things I need most from the STL Library. Can you tell me as to what I'll probably need in programming contests, so I know where to start. Thank you!
Posted: Fri Dec 02, 2005 4:34 am
by Timo
You can learn from this site
http://www.josuttis.com/libbook/toc.html
see the STL algorithms.
I think all of them are needed in programming contest.

Posted: Fri Dec 02, 2005 6:10 am
by Roby
And here's the "complete" one

(technical and help about STL):
Posted: Sun Dec 04, 2005 12:05 am
by _Rifat_
In my opinion very useful following STL elements.
containers:
vector
deque
set
map
basic_string
algorithms:
sort
find
next_permutation
Posted: Sat Dec 10, 2005 2:56 pm
by Martin Macko
_Rifat_ wrote:In my opinion very useful following STL elements.
containers:
vector
deque
set
map
basic_string
algorithms:
sort
find
next_permutation
Don't forget on:
containers:
priority_queue, multiset, multimap
algorithms:
lower_bound, upper_bound, merge