Merge pull request #689 from drunkenlegend/master

links added to C++ in coding-interview-university/programming-language-resources.md
This commit is contained in:
John Washam 2020-12-13 11:18:36 -08:00 committed by GitHub
commit 7829cc1aed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,17 +12,17 @@
- C++ - C++
- [C++ Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/Cpp_reference.pdf) - [C++ Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/Cpp_reference.pdf)
- [STL Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/STL%20Quick%20Reference%201.29.pdf) - [STL Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/STL%20Quick%20Reference%201.29.pdf)
- basics - [basics](https://www.tutorialspoint.com/cplusplus/cpp_basic_syntax.htm)
- pointers - [pointers](https://www.cprogramming.com/tutorial/lesson6.html)
- class and object - [class and object](https://www.cprogramming.com/tutorial/lesson12.html)
- functions - [functions](https://www.cprogramming.com/tutorial/lesson4.html)
- references - [references](https://www.geeksforgeeks.org/references-in-c/)
- templates - [templates](https://www.cprogramming.com/tutorial/templates.html)
- compilation - [compilation](https://www.youtube.com/watch?v=ZTu0kf-7h08)
- scope & linkage - [scope & linkage](https://www.learncpp.com/cpp-tutorial/scope-duration-and-linkage-summary/)
- namespaces - [namespaces](https://www.tutorialspoint.com/cplusplus/cpp_namespaces.htm)
- OOP - [OOP](https://www.geeksforgeeks.org/object-oriented-programming-in-cpp/)
- STL - [STL](https://www.hackerearth.com/practice/notes/standard-template-library/)
- [functors](http://www.cprogramming.com/tutorial/functors-function-objects-in-c++.html) - [functors](http://www.cprogramming.com/tutorial/functors-function-objects-in-c++.html)
- [C++ at Google (video)](https://www.youtube.com/watch?v=NOCElcMcFik) - [C++ at Google (video)](https://www.youtube.com/watch?v=NOCElcMcFik)
- [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html) - [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html)