The document summarizes four common searching algorithms: sequential search, binary search, interpolation search, and hashing. Sequential search looks at elements in order from first to last. Binary search divides the search space in half at each step. Interpolation search estimates where an element may be located based on value distribution. Hashing uses a hash function to map elements to array indices, handling collisions by probing to next open index.