Better Algorithm Intuition - Conor Hoekstra - Meeting C++ 2019
A new video from Meeting C++ 2019
Better Algorithm Intuition
by Conor Hoekstra
November 14-16, Berlin, Germany
November 18-23, Wrocław, Poland
November 25, Wrocław, Poland
February 10-15, Hagenberg, Austria
March 19-21, Madrid, Spain
April 1-4, Bristol, UK
June 16-21, Sofia, Bulgaria
By Meeting C++ | Dec 24, 2019 04:52 AM | Tags: performance meetingcpp intermediate efficiency c++17 c++14 c++11 basics algorithm advanced
A new video from Meeting C++ 2019
Better Algorithm Intuition
by Conor Hoekstra
By Jeremy Wright | Feb 19, 2015 07:44 AM | Tags: range intermediate efficiency algorithm
An interesting article concerning ranges, and how to make the ever useful algorithm header even more effective:
Common algorithm patterns
by Scott Prager
From the article:
Of the STL, <algorithm> may be the most well-used non-container library, but often requires a level of verbosity that requires just as much typing as the hand-written loop, making it not always feel so convenient. It benefits code that uses it with increased clarity and mathematical soundness, so reducing the syntactic overhead should be a goal of those using it. Today I will talk about these problems and demonstrate ways of making it more terse and sound.