On Friday, May 10, 2013 8:31:11 AM UTC-4, Vaibhav Tulsyan wrote: > What is the best place to learn STL from? Most websites/tutorials are really > lame and I never learn much from them.
Best way to learn the STL is to use it. Grab a tutorial about templates in c++ (so that you get to understand what the hell pair<vector<int>, string> means. Then read the STL documentation as if you were reading any other library's documentation. Anyway, once you start getting a hold of how the STL works, I have some blog posts that explain some features/tricks that are useful during contests: http://vexorian.blogspot.com/search/label/stl -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msg/google-code/-/xI-utY43WX8J. For more options, visit https://groups.google.com/groups/opt_out.
