Difference between revisions of "C++ Resources"
From Simson Garfinkel
Jump to navigationJump to search
m (Created page with '==General STL== * [http://www.tantalon.com/pete/gdc2001roundtablereport.htm STL Optimization Techniques] ==map== * [http://www.cplusplus.com/reference/stl/map/ map reference] * h…') |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
* [http://www.cplusplus.com/reference/stl/map/ map reference] | * [http://www.cplusplus.com/reference/stl/map/ map reference] | ||
* http://www.codersource.net/published/view/337/coder_eye_view_of_stl_map.aspx | * http://www.codersource.net/published/view/337/coder_eye_view_of_stl_map.aspx | ||
==Recommended Books== | |||
* [http://www.gotw.ca/publications/xc++.htm Exceptional C++ (book)] | |||
* [https://www.amazon.com/C-Traps-Pitfalls-Andrew-Koenig/dp/0201179288 C Traps and Pitfalls] | |||
==Other Recommended Books== | |||
* [https://www.amazon.com/Seven-Languages-Weeks-Programming-Programmers/dp/193435659X 7 Languages in 7 Weeks] | |||
* [https://www.amazon.com/Beautiful-Code-Leading-Programmers-Practice/dp/0596510047/ref=sr_1_2?keywords=beautiful+code&qid=1579891900&s=books&sr=1-2 Beautiful Code] | |||
See Also | See Also | ||
* http://www.cplusplus.com/ | * http://www.cplusplus.com/ | ||
* http://www.codeproject.com | * http://www.codeproject.com | ||
* http://www.boost.org/ (but it's big) | * http://www.boost.org/ (but it's big) | ||
* http://en.wikipedia.org/wiki/Map_(C%2B%2B_container) | * http://en.wikipedia.org/wiki/Map_(C%2B%2B_container) | ||
* http://en.wikipedia.org/wiki/Multimap_(data_structure) | * http://en.wikipedia.org/wiki/Multimap_(data_structure) | ||
[[Category:Resources]] |
Latest revision as of 10:51, 24 January 2020
General STL
map
Recommended Books
Other Recommended Books
See Also