Algorithms

See CppCon 2018: Jonathan Boccara: 105 STL Algorithms in Less Than an Hour.

Secret runes

  • stable_
  • is_
  • is_*_until

See Introsort and sorting algorithms.

Algorithm patterns

  • Brute Force
  • Divide and Conquer: Karatsuba’s Integer Multiplication -- it is possible to perform multiplication of large numbers in (many) fewer operations than the usual brute-force technique of "long multiplication." As discovered by Karatsuba (Karatsuba and Ofman 1962).
  • Decrease and Conquer
  • The Greedy Method
  • Dynamic Programming
  • Backtracking
  • "Branch and bound (BB, B&B, or BnB) is an algorithm design paradigm for discrete and combinatorial optimization problems."
  • Hill Climbing
  • Particle Swarm Optimisation
  • Las Vegas
  • Monte Carlo
  • Reduction (Transformation)
  • Preprocessing
  • "Gradient descent is a first-order iterative optimization algorithm for finding a local minimum of a differentiable function."

See algorithm patterns.

Big-O notation

Big-O notations is a technique to describe the complexity of an algorithm as the data set becomes larger.

Be prepared to write code. Remember your merge sort, quick sort, binary search, etc, and be able to write them cold.

Complexity name
O(1) constant
O(log n) logarithmic
O(n) linear
O(n log n)=O(log n!) linearithmic
O(n^2) quadratic
O(n^c) polynomial
O(c^n) exponential
O(n!) factorial

See the Big-O cheat sheet and time complexity

Memory access

That assumes all memory accesses cost the same, which is not a physically reasonable assumption as we scale n to infinity, and not, in practice, how real computers work. This argument extends from the observation that computers are filled with different types of memory (cache, system memory, virtual memory etc.) in different and limited quantities. Modern operating systems will position variables into these different systems automatically making memory access time differ widely as more and more memory is utilized.

References

results matching ""

    No results matching ""