c++ Programming Glossary: textbook
How do C/C++ compilers work? http://stackoverflow.com/questions/1085490/how-do-c-c-compilers-work for testing his advanced parsing and grammar theory textbook on unsuspecting 3rd year Comp Sci students. I was left with..
Learning C and/or C++ from beginner to advanced [closed] http://stackoverflow.com/questions/171126/learning-c-and-or-c-from-beginner-to-advanced is where to start and what to do Should I just buy a textbook and work through all of its exercises Which book to pick What..
C++: Undefined reference to instance in Singleton class http://stackoverflow.com/questions/2145331/c-undefined-reference-to-instance-in-singleton-class implement a factory as a singleton. I practically used the textbook example of the Singleton pattern. Here's the .h file namespace..
Use-cases of pure virtual functions with body? http://stackoverflow.com/questions/2609299/use-cases-of-pure-virtual-functions-with-body call yours explicitly. Yeah I know a pretty silly textbook example but as such it's a classic. It must have been in the..
parser with scopes and conditionals http://stackoverflow.com/questions/3025293/parser-with-scopes-and-conditionals suggest and this is more or less right out of the compiler textbooks that you approach the problem in phases. This breaks things.. and parsers I do recommend you get a good solid compiler textbook to help you out. The Stack Overflow topic mentioned in the comments..
Finite State Machine parser http://stackoverflow.com/questions/3085070/finite-state-machine-parser pushdown automaton internally. A good compiler design textbook will cover the exact algorithm by which the pushdown automaton..
Performance of C++ vs Virtual Machine languages in high frequency finance http://stackoverflow.com/questions/3175072/performance-of-c-vs-virtual-machine-languages-in-high-frequency-finance as the formulae in any elementary queuing theory textbook will tell you. The same formulae will show jitter values frequently..
std::vector versus std::array in C++ http://stackoverflow.com/questions/4424579/stdvector-versus-stdarray-in-c over another What are the pros and cons of each All my textbook does is list how they are the same. c arrays vector share..
Template Specialization VS Function Overloading http://stackoverflow.com/questions/7108033/template-specialization-vs-function-overloading Specialization VS Function Overloading A textbook I have notes that you can provide your own implementation for..
|