About 7,850 results
Open links in new tab
  1. Searching Algorithms - GeeksforGeeks

    Jan 28, 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.

  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 …

  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 a fundamental computer science concept that you should understand as a developer. They work by using a step-by-step method to locate specific data among …

  5. Pathfinding Algorithms: A Visual Guide - saha-raj.github.io

    Search algorithms are fundamental techniques in computer science for finding paths through complex spaces. They form the backbone of many applications, from navigation systems to artificial intelligence.

  6. Algorithms | Computer science theory | Computing | Khan Academy

    Explore two games that you could use an algorithm to solve more efficiently - the number guessing game and a route-finding game. What is an algorithm and why should you care? Apply the binary …

  7. Pathfinding Algorithms- Top 5 Most Powerful - Graphable

    Jun 6, 2023 · In this article, we provide an overview of the most common pathfinding algorithms, their strengths and weaknesses, and their use cases. We explore how these algorithms work and provide …

  8. The A* Algorithm: A Complete Guide - DataCamp

    Nov 7, 2024 · The A* algorithm is a powerful and widely used graph traversal and path finding algorithm. It finds the shortest path between a starting node and a goal node in a weighted graph.

  9. Introduction to Searching - GeeksforGeeks

    Sep 23, 2025 · It is the simplest searching algorithm that checks each element sequentially until the key is found or the collection is fully traversed. Works on both sorted and unsorted data.

  10. Search Algorithm: Definition, Types, and Benefits Explained

    Jan 3, 2026 · A Search Algorithm is a step-by-step computer science method for finding a specific item or value within data structures like arrays, lists or databases. It improves data retrieval efficiency by …