Searching Algorithms

See how search algorithms find target elements in data structures.

Categories

2 problems available in this category.

Binary Search

easy

Interactive visualization of the Binary Search algorithm. Learn how to find an element in a sorted array in O(log n) time complexity.

Searching Algorithmsarraysearchingarray
O(O(log n))O(O(1))
Visualize

Linear Search

easy

Interactive visualizer for the Linear Search algorithm. Understand how to search an array element by element with O(n) time complexity.

Searching Algorithmsarraysearchingarray
O(O(n))O(O(1))
Visualize