Algorithms

C++ Container Mechanisms

Below are my notes on section 3 of “A tour of C++” Libraries The C++ standard library provides several facilities to the programmer, in order to simplify the given task. These include: Basic Runtime Language Support C standard Library Strings and I/O streams Framework of containers Support for numerical computation Support for REGEX matching Support for Concurrent processing Utilities to sopport template metaprorgamming Smart pointers Special-purpose containers Strings String concatenation is efficient given it has a move operator.
Read more