Coming Soon
Binary Search
Classic divide-and-conquer search on sorted arrays. Watch the search space halve with each comparison.
Coming Soon
Linear Search
Sequential scan through unsorted data. The baseline every faster algorithm is measured against.
Live
Sliding Window
Move a window over an array to solve subarray problems in O(n). Watch bounds shift and the running sum update.
Live
Aho-Corasick
Multi-pattern string matching with failure links. Find all patterns simultaneously in a single O(n+m+z) pass.