Skip to main content

25 docs tagged with "Algorithm"

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 Bubble Sort?

Bubble sort is a simple yet intuitive algorithm for sorting an array by comparing and swapping adjacent elements.

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 Insertion Sort?

Insertion sort sorts an array by progressively inserting each element into its appropriate position.

What is Merge Sort?

Merge Sort is a method that efficiently sorts an array using the divide and conquer algorithm.

What is Quick Sort?

Quick Sort is a fast sorting algorithm that uses a pivot to partition and sort an array.

What is Selection Sort?

Selection Sort is a simple and easy-to-understand sorting method that arranges elements by repeatedly finding the minimum value for each position in the array.