In this post we talk about how to write code that is both flexible and fast!

In this post we talk about how to write code that is both flexible and fast!
We investigate a simple way to speed up std::sort from the standard library
A few days ago I wrote a small app to illustrate one of the articles I was preparing. Basically the program was loading a file from the hard disk, sorting it, and then outputting to another file only unique values (by omitting duplicates). The function for writing unique values to a file looks like this:…
We talk about how to speed up your program if your program is taking time to allocate or release memory.