About 641,000 results
Open links in new tab
  1. Binary Search Algorithm - Iterative and Recursive …

    May 12, 2025 · Binary Search Algorithm is a searching algorithm used in a sorted array by r epeatedly dividing the search interval in half. The idea of binary search is to use the …

  2. Find a String in given Array of Strings using Binary Search

    Apr 9, 2025 · Given a sorted array of Strings arr and a string x, The task is to find the index of x in the array using the Binary Search algorithm. If x is not present, return -1. Examples: …

  3. Binary search (article) | Algorithms | Khan Academy

    Binary search is an efficient algorithm for finding an item from a sorted list of items. It works by repeatedly dividing in half the portion of the list that could contain the item, until you've …

  4. Binary Search with Python - W3Schools

    The Binary Search algorithm works by checking the value in the center of the array. If the target value is lower, the next value to check is in the center of the left half of the array. This way of …

  5. Binary Search: A Comprehensive Guide - The Research Scientist Pod

    Binary Search is a cornerstone algorithm in computer science, widely used for efficiently searching elements in sorted collections. Its simplicity and power make it a go-to solution for …

  6. Binary Search Algorithm with EXAMPLE - Guru99

    Sep 26, 2024 · A binary search is an advanced type of search algorithm that finds and fetches data from a sorted list of items. Its core working principle involves dividing the data in the list to …

  7. Binary Search Algorithm: Step-by-Step Explanation and …

    Below are the detailed steps in the binary search algorithm: Start with a Sorted List: Binary search only works on sorted lists (e.g., list numbers in ascending or descending order, list of names in …

  8. Binary Search in String (Example & C++ Implementation)

    Aug 14, 2023 · Binary Search in String: In this tutorial, we will learn how to use binary search to find a word from a dictionary (A sorted list of words). Learn binary search in the string with the …

  9. Binary Search Algorithm - Intellipaat

    May 6, 2025 · Binary Search Algorithm is an efficient way to search for an element in a large dataset that can take much more time. It checks each element sequentially, divides the …

  10. Binary Search Algorithm | Detailed Explanation +Code Examples …

    Binary search is a divide-and-conquer algorithm used to efficiently find an element in a sorted array. Instead of scanning elements one by one (like in linear search), it repeatedly divides the …

  11. Some results have been removed
Refresh