About 4,250,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. When we search an item in an array, there are two most common algorithms used based on the type of input array.

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

    Feb 11, 2025 · Searching algorithms are fundamental tools in data structures, used to find specific elements within a dataset. Whether you’re looking through a simple list of numbers or navigating complex data structures like trees and graphs, understanding …

  3. Data Structure and Algorithm Tutorial - GeeksforGeeks

    Oct 21, 2024 · Understanding the characteristics of searching in data structures and algorithms is crucial for designing efficient algorithms and making informed decisions about which searching technique to employ. Here, we explore key aspects and characteristics associated with searching:

  4. Difference between BFS and DFS - GeeksforGeeks

    Oct 18, 2024 · BFS (Breadth First Search) uses Queue data structure for finding the shortest path. DFS (Depth First Search) uses Stack data structure. BFS is a traversal approach in which we first walk through all nodes on the same level before moving on to the next level.

  5. Searching in Data Structure: Different Search Methods Explained

    Dec 9, 2024 · The article includes linear search, binary search, and interpolation search algorithms and their working principles. Let’s take a closer look at the linear and binary searches in the data structure.

  6. Data Structures - Searching Algorithms - Online Tutorials Library

    Explore various searching algorithms, their types, implementations, and applications in data structures. Discover the fundamentals of searching algorithms in data structures and how they are used in programming.

  7. Comparison of Searching Methods in Data Structures

    Aug 27, 2019 · Explore various searching methods used in data structures, including their advantages and disadvantages. Learn how to choose the right searching technique for your needs.

  8. A Comparison and Selection on Basic Type of Searching Algorithm in Data ...

    Aug 7, 2014 · Searching is common fundamental operation and solve to searching problem in a different formats of these field. This research paper are presents the basic type of searching algorithms of data...

  9. Searching in Data Structure: Different Search Algorithms and …

    Feb 26, 2025 · Searching in data structure using algorithms helps organize and find data, ensuring quick access, minimal delays, and better user experiences. From databases to search engines, their role is indispensable. In this article, you’ll dive deep into the fascinating world of searching in data structures.

  10. Searching in Data Structures: Types, Techniques and Methods

    Nov 10, 2024 · Algorithms: Different data structures require specific searching algorithms. Linear search works well with unsorted data structures, while binary search thrives in sorted arrays.