vote up 4 vote down star

I am preparing for a programming competition in witch we solve programming problems in c++.

Looking at the former year solutions, they seem quite easy (not more than ~30 lines of code). I realised that they are widely using the STL for easy manipulating - vectors, sets, maps, lists and also the algorithms available in STL.

Any site for beginners like me who want to learn the features of STL and its use in solving problems ?

Thank you in advance.

flag

25% accept rate

3 Answers

vote up 9 vote down check

As well as Scott Meyer's excellent book "Effective STL" which has been recommended above, I can't recommend highly enough the excellent book Accelerated C++ by Andrew Koenig and Barbara E. Moo.

The book starts by having you use STL very early in the book explaining their uses in the context of initially simple problems. This book treats C++ as its own language and not as C with bits bolted on, the mechanics of defining a class aren't explained until later in the book.

link|flag
vote up 15 vote down

Two books come to mind: Josuttis's The C++ Standard Library (and his page for it), and Meyers's Effective STL

link|flag
+1 for Scott Meyers - all his books are excellent. Must reads for all C++ developers – duffymo Sep 12 at 17:43
+1 for Scott's book as well! – Rob Wells Sep 12 at 17:46
+∞ These are the two books that anyone working with STL should have on their shelf. Meyers is a really quick read so buy it and read it. Josuttis is probably the best all around book on the STL. – D.Shawley Sep 12 at 17:56
+1 for Josuttis. Its best for both beginner and expert level. – aJ Sep 12 at 18:00
+1, Josuttis is the way to go – Naveen Sep 12 at 18:09
vote up 1 vote down

If you have some conception of non-STL C++ and specifically need to understand how STL's approaches correspond to non-STL ones, I recommend this tutorial.

link|flag
No downvote for this, but I can't recommend that site to a new learner. It uses pre-standard headers, over a decade later. – Novelocrat Sep 12 at 17:46
@Novelcrat: It isn't for a 'new learner', it is for someone who already knows "C with classes" who wants to see how C++ with STL should look. – Nick Presta Sep 12 at 18:14
I just read it, and it actually seems quite good despite the old style. I'm not sure it's particularly targeted at people who know "C with classes", so much as people who've had some introduction to C++. It also trails off at the end. At any rate, it's more valuable than my initial impression. +1 for linking it up. – Novelocrat Sep 12 at 20:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.