About 129,000 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 …

  2. A* search algorithm - Wikipedia

    A* is an informed search algorithm, or a best-first search, meaning that it is formulated in terms of weighted graphs: starting from a specific starting node of a graph, it aims to find a path to the …

  3. Category:Search algorithms - Wikipedia

    Pages in category "Search algorithms" The following 118 pages are in this category, out of 118 total. This list may not reflect recent changes.

  4. Search algorithm - Simple English Wikipedia, the free encyclopedia

    A search algorithm is a method for finding a target value within a list. It checks each element of the list for the target value until a match is found or until all the elements have been searched.

  5. Searching Algorithms - GeeksforGeeks

    Dec 20, 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 …

    Missing:
    • Wikipedia
    Must include:
  6. Binary search - Wikipedia

    Linear search is a simple search algorithm that checks every record until it finds the target value. Linear search can be done on a linked list, which allows for faster insertion and deletion than …

  7. Category:Internet search algorithms - Wikipedia

    Pages in category "Internet search algorithms" The following 16 pages are in this category, out of 16 total. This list may not reflect recent changes.

  8. Wikipedia, the free encyclopedia

    Wikipedia is a free online encyclopedia, created and edited by volunteers around the world and hosted by the Wikimedia Foundation.

  9. 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.

    Missing:
    • Wikipedia
    Must include:
  10. Search Algorithms – Linear Search and Binary Search Code …

    Jan 11, 2022 · According to Wikipedia, a search algorithm is: Any algorithm which solves the search problem, namely, to retrieve information stored within some data structure, or …