Algorithms
To-do
- Sorting
- Graph: Kahn’s Algorithm for topological sorting
- Intro sort
- Insertion sort
- Heap Sort
- Searching
- Best-First Search
- Dijkstra
- A*
- JPA*
- …
- Graph: Minimum-Spanning-Tree
- Best-First Search
- Overlapping Intervals
- Modified Binary Search
- Backtracking
Prefix Sum
#dynamic-programming#aggregation#window#prefix-sum
An algorithm to find the sum of elements in multiple windows of an array more efficiently
Divide and Conquer
Problems that can be solved by combining optimal solutions to non-overlapping sub-problems. As the sub-problems are non-overlapping, Divide-and-conquer algorithms are more trivially parallelizable.
Dynamic Programming
#memoization#dynamic-programming
Dynamic Programming is an optimization strategy that usually results in recursive algorithms being turned into loops with data cached outside of it. Requirements Problem must have optimal substructure The solution can be obtained by the combination of optimal solutions to its sub-problems. Problem must have overlapping sub-problems Any solution solving the problem must not solve the same sub-problem multiple times (i.e. do so without generating another sub-problem). Fibonacci wouldn’t work as it will repeatedly generate the same sub-problems to have to be re-solved.