Skip to main content

11 docs tagged with "binary search"

View all tags

Binary Search

In this blog post, we'll dive into the binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array.

Binary Search

In this blog post, we'll dive into the binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array.

Binary Search

In this blog post, we'll dive into the binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array.

Binary Search in Matrix

In this blog post, we'll explore binary search in a matrix, an optimized method to find an element in a sorted 2D matrix efficiently in C++.

Binary Search Rotated sort array

In this blog post, we'll dive into the rotated array approach with binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array.

Exponential Search

In this blog post, we'll explore Exponential Search, a searching algorithm that efficiently finds an element in a sorted array, especially when the size of the array is unknown.

Iterative Binary Search

In this blog post, we'll explore the iterative binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array. You'll learn what iterative binary search is, how it works, and its time complexity. We'll also cover practical applications and common problems you can solve using this algorithm. By the end, you'll have a thorough understanding of iterative binary search and how to implement it in your programming projects.

Minimize the Maximum of Two Arrays

In this blog post, we'll explore how to solve the problem of minimizing the maximum value between two arrays using binary search and mathematical reasoning.

Practice Problems

Here are some practice problems for Binary Search, divided into topic-wise and difficulty-wise categories.

Recursive Binary Search

In this blog post, we'll explore the recursive binary search algorithm, a fundamental technique in computer science for efficiently finding an element in a sorted array. You'll learn what recursive binary search is, how it works, and its time complexity. We'll also cover practical applications and common problems you can solve using this algorithm. By the end, you'll have a thorough understanding of recursive binary search and how to implement it in your programming projects.