Skip to main content

8 docs tagged with "Search"

View All Tags

What is Binary Search?

Binary search is an efficient method for finding a specific value in a sorted array by repeatedly dividing the search interval in half.

What is Depth First Search (DFS)?

DFS is an algorithm for traversing or searching tree or graph data structures, starting at the root node and exploring as far along each branch as possible.

What is Sequential Search?

Sequential search is a basic search algorithm that examines each element in an array or list sequentially to find the desired value.