cphb
cphb copied to clipboard
Competitive Programmer's Handbook
The analysis of nim and examples could be improved
Maybe there should be some warning for the use of getline. If you use cin before getline you should eat the whitespaces with cin>>ws; before the getline command.
Fix efficiency comparison in Chapter 04 (Algorithm 2 is fastest) Measured execution time of all algorithms using C++ code (n values from the table). Corrected the previous assumption: Algorithm 2...