Tweets
- C++20 format library now available in Spanish: es.cppreference.com/w/cpp/utility/… 1 month ago
- Biblioteca de formato de C++20 ahora disponible en español: es.cppreference.com/w/cpp/utility/… 1 month ago
- RT @blelbach: C++20 has been published! iso.org/standard/79358… 2 months ago
-
Recent Posts
- If you build it, will they come?
- Look what the cat dragged in…
- C++23 Stacktrace library documentation now available in Spanish / C++23 Documentación de la biblioteca de listado de pila ahora disponible en español
- C++20 Three-Way Comparison Now Available In Spanish / C++20 Comparación de tres vías ahora disponible en español
- C++20 format library now available in Spanish/Biblioteca de formato de C++20 ahora disponible en español
Blogs I Follow
Recent Comments
Archives
Categories
Meta
Monthly Archives: September 2016
Customizing Priority Queues in C++
A nifty feature of priority queues in C++ is that you can implement a max heap or a min heap by simply changing the compare type. For most purposes, std::less and std::greater can do the job, provided that you use built-in … Continue reading
Posted in algorithms, data structures, software
Leave a comment