About 15,400 results
Open links in new tab
  1. 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 …

  2. Searching Algorithms - GeeksforGeeks

    Jan 20, 2026 · 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.

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

    May 29, 2023 · Delve into the 6 types of search algorithms and gain insights into how each one works to optimize your search results more effectively.

  4. Search Algorithms – Linear Search and Binary Search Code …

    Jan 11, 2022 · Search algorithms are designed to check or retrieve an element from any data structure where that element is being stored. They search for a target (key) in the search space. In this post, …

  5. Top 10 Search Algorithms: A Comparative Study - Algorithm Examples

    Different search algorithms, such as jump search, exponential search, ternary search, Fibonacci search, hash search, and breadth-first search, have their own unique characteristics and applications.

  6. Search Algorithms: Types, Examples & Uses - ait.systems

    Oct 1, 2024 · Search algorithms can be broadly categorized into simple search algorithms (like linear and binary search) and graph traversal algorithms (such as depth-first and breadth-first searches). …

  7. 3. Searching - Princeton University

    Aug 26, 2016 · Modern computing and the internet have made accessible a vast amount of information. The ability to efficiently search through this information is fundamental to computation. This chapter …

  8. Search Algorithms Explained - Udacity

    Jul 29, 2020 · Search algorithms seek to answer a question by exploring a defined domain. Let’s say that we want to look up someone’s phone number. The domain, or search space, is the set of all …

  9. A Comprehensive Guide to Search Algorithms - The Alpha Dev

    Jul 10, 2024 · Linear search is the simplest search algorithm. It sequentially checks each element in a list until the target value is found or the list ends. This algorithm works well for small or unsorted …

  10. Search Algorithm - an overview | ScienceDirect Topics

    Search algorithms are classified based on the information they utilize and their approach to exploring the search space. The primary categories are uninformed (blind) search, informed (heuristic) search, and …