About 5,790,000 results
Open links in new tab
  1. Searching Algorithms - GeeksforGeeks

    Apr 13, 2025 · Searching algorithms are essential tools in computer science used to locate specific items within a collection of data. In this tutorial, we are mainly going to focus upon searching in an array.

  2. Search algorithm - Wikipedia

    In computer science, a search algorithm is an algorithm designed to solve a search problem. Search algorithms work to retrieve information stored within particular data structure, or calculated in the search space of a problem domain, with either discrete or continuous values.

  3. 6 Types of Search Algorithms You Need to Know - Luigi's Box

    May 29, 2023 · In this article, you’ll learn about the most common search algorithms, their time complexities, how their search processes work, and real-life applications in computer science.

  4. Exploring 7 Different Types of Search Algorithms

    In the realm of computer science and information retrieval, search algorithms hold a pivotal role for their capacity to expedite the retrieval process through systematic strategies. This discussion will venture into the depths of seven distinct types of search algorithms: Linear, Binary, Jump, Interpolation, Exponential, Sublist, and Fibonacci.

  5. Introduction to Searching - Data Structure and Algorithm Tutorial

    Oct 21, 2024 · Searching Algorithms are designed to check for an element or retrieve an element from any data structure where it is stored. Below are some searching algorithms: 1. Linear Search: Linear Search, also known as Sequential Search, is one of the simplest and most straightforward searching algorithms.

  6. Understanding Searching Algorithms in Computer Science

    Dec 7, 2024 · Searching algorithms are key for quick data access, greatly affecting tech and user experience. They are vital across digital platforms and complex systems. These algorithms make sure info is found fast. The success of these systems often relies on …

  7. Searching - Algorithms - Computer Science Field Guide

    It happens every time you type in a search on Google, or when you type in a file name to search for on your computer. Computers deal with such huge amounts of data that we need fast algorithms to help us find information quickly.

  8. Top 10 Search Algorithms: A Comparative Study - Algorithm

    In the realm of computer science, search algorithms play a pivotal role in data extraction and management. An in-depth comparison of the top 10 search algorithms, including Binary, Linear, Jump, Interpolation, Ternary, Fibonacci, Hash, Breadth-first among others, can provide an insightful understanding of their unique functionalities and ...

  9. Computer Science Fundamentals: Searching & Sorting - Spector

    Computer scientists have adopted a common language for evaluating the efficiency of algorithms using “Big O Notation”. The linear search algorithm has a Big O of N. N refers to the number of items in the list. Big O refers to the worst-case scenario when …

  10. Searching algorithmsIsaac Computer Science

    With an unordered list, the only way to find a specific item is to look at every item in the list one after another. This algorithm is called a linear search. If the list of items is ordered, you can repeatedly split the list in half and check only the half in …

  11. Some results have been removed