The C++ Standard Library : A Tutorial and Reference description
Programming with the C++ Standard Library can certainly be difficult, but Nicolai Josuttis's The C++ Standard Library provides one of the best available guides to using the built-in features of C++ effectively. / The C++ Standard Library provides plenty of default functionality in the form of the Standard Template Library (STL) for containers (like vectors and linked lists), as well as generic algorithms (which allow you to sort, search, and manipulate elements inside containers). The best thing about The C++ Standard Library is that it gives the reader a concise guide to working with these basic containers (from lists to sets and maps, with everything in between). Each container type is explained along with short code excerpts. Moreover, in a reference section, the author explores the connections between each container type, showing how they share similar methods. (Learn just a few methods and you can pretty much work with them all.)
Similar scripts
Challenges with C++: A compilation of 550+ MCQ's
(Popularity: ) : This book is a collection of 550+ multiple choice questions which covers all the core C++ language concepts. The main ... Numerical Recipes in C++: The Art of Scientific Computing
(Popularity: ) : The product of a unique collaboration among four leading scientists in academic research and industry, \[I\]Numerical Recipes\[/I\] is a comprehensive ... Beginning Visual C++ 6
(Popularity: ) : "Windows programming is not difficult," observes well-respected author Ivor Horton in his book Beginning Visual C++ 6. "In fact, Microsoft ... Microsoft Visual C# .NET Step by Step
(Popularity: ) : This title gives readers with previous Microsoft Visual C++ or Microsoft Visual Basic experience the foundation they need to hit ... Modern C++ Design: Generic Programming and Design Patterns Applied
(Popularity: ) : Presents a collection of reusable design artifacts, called generic components, together with the techniques that make them possible. The author ... The C++ Programming Language (Special 3rd Edition)
(Popularity: ) : In this brand-new third edition of The C++ Programming Language, author Bjarne Stroustrup, the creator of C++, presents the full ... More Effective C++: 35 New Ways to Improve Your Programs and Designs
(Popularity: ) : For programmers at the intermediate level and above. This sequel to the author's Effective C++ provides methods for improving program ... C++ How to Program (3rd Edition)
(Popularity: ) : This is an exciting time in the C++ world, according to the MIT graduate authors of this classic introductory programming ...