Miscellaneous
Some interesting algorithms that don't fit into any other category.
- Fast inverse square root: A quick method for calculating by exploiting the IEEE 754 floating-point representation.
- Fisher-Yates shuffle: A simple and unbiased algorithm for shuffling an array.
- KMP algorithm: An efficient string searching algorithm that avoids unnecessary backtracking.