Best book for C++ STL Library.??

I want to learn some inbuilt function and their proper syntax in C++ provided by the STL…!
please suggest me a link or a good book which emphasises on specially STL and inbuilt functions in C++ as it really helps in solving questions and enhances the execution time of the program.!

1 Like

http://www.cplusplus.com/reference/stl/

No need for any books :slight_smile:

2 Likes

AFAIK C++ doesn’t have inbuilt functions. The functions are provided through libraries.

Apart from C libraries (like math), C++ has STL.

A free and online book for learning STL, and more advanced C++ is C++ Annotations.

BTW, @back2basics, has said it right that you don’t need a book for STL. Just Google for some container or algorithm and first few links will direct you to either C++ Reference or cplusplus.com.

Also there is a tutorial on Topcoder for STL

1 Like