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

    Sep 23, 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 …

  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. Data Structures - Searching Algorithms - Online Tutorials Library

    Various searching techniques can be applied on the data structures to retrieve certain data. A search operation is said to be successful only if it returns the desired element or data; otherwise, the …

  5. 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 …

  6. 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, …

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

  8. Searching Algorithms in DSA (All Types With Time Complexity)

    Nov 25, 2025 · Let’s explore various searching algorithms, from basic techniques like linear search to more advanced methods like binary search and depth-first search. By learning these algorithms, …

  9. Search Algorithms: A Comprehensive Guide – CRNX

    May 8, 2025 · Searching algorithms are fundamental in computer science for finding a specific item or piece of information within a larger collection of data. The efficiency of a search algorithm often …

  10. Searching Algorithms - Tpoint Tech - Java

    Aug 28, 2024 · Searching algorithms are methods or procedures used to find a specific item or element within a collection of data.