Searching & Arrays
Understand how different search strategies work across data structures.
Binary Search
Efficiently finds an element in a sorted array by halving the search space.
Linear Search
Sequentially checks each element until the target is found.