Linear Search:A search algorithm that checks each element in order until the desired value is found.
Binary Search:A more efficient search algorithm that divides the search space in half at each step, assuming the data is sorted.
Hashing: A technique that maps values to unique keys using a hash function, allowing for fast retrieval of elements.