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

    Apr 13, 2025 · In C++, STL provide various functions like std::binary_search(), std::lower_bound(), and std::upper_bound() which uses the the binary search algorithm for different purposes. These function will only work on the sorted data.

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

    Feb 11, 2025 · Searching algorithms can be categorized into several types, each suited for different data structures and use cases. Linear search is the simplest searching algorithm. It sequentially checks each element in a list until it finds the target value or …

  3. Data Structures - Searching Algorithms - Online Tutorials Library

    Searching Algorithms - Explore various searching algorithms, their types, implementations, and applications in data structures.

  4. Data Structure and Algorithm Tutorial - GeeksforGeeks

    Oct 21, 2024 · Searching Algorithms are designed to check for an element or retrieve an element from any data structure where it is stored. Below are some searching algorithms: 1. Linear Search: Linear Search, also known as Sequential Search, is one of the simplest and most straightforward searching algorithms.

  5. Searching in Data Structures - Its Types, Methods & Techniques

    Jan 15, 2025 · Linear search: This is the most simple searching algorithm in the data structures that checks each element of the data structure until the desired element is found. Binary search: This algorithm is used for searching in a sorted array or list.

  6. Introduction To Searching Algorithms In C++ - Software Testing …

    Apr 1, 2025 · In this tutorial, we will explore both of these search techniques in detail. This is the most basic searching technique and is easier to implement too. In a linear search, the key to be searched is compared linearly with every element of the data collection. This technique works effectively on linear data structures.

  7. Searching Techniques in Data Structures - W3Schools

    This chapter explores various searching techniques. Searching is an operation or a technique that helps finds the place of a given element or value in the list. * What is searching? * What is Linear Search? * What is Binary Search?

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

  9. Data Structure Searching Algorithms - Includehelp.com

    Apr 17, 2025 · There are three main types of searching techniques: This technique searches for an item from a list, starting from the 0th index to the Nth-1 index sequentially. If the item is found, its position is returned; otherwise, -1 or a failure status is returned. 1. Set POS := 0; 2. Set LOC := 1; 3. Repeat STEPS a and b while LOC <= N. a.

  10. Data Structure and Algorithm - Nanyang Technological University

    Searching involves deciding whether a search key is present in the data. For example, looking up a phone book or address book. The searching algorithm includes: Linear Search: See "Linear Search". See "Linear Search". The worst-case and average-case time complexity is O (n). The best-case is O (1).

  11. Some results have been removed
Refresh