Search Algo
↔ Algo to find a solution to a problem within a set of possibilities
Binary Search
Algo to search element in pre-sorted Array by halving with Logarithmic Complexity
Linear Search
Algo to search element via sequential Iteration of list el
References
BFS
↔ Search Algo to Traverse breadth first, down Graph child layer by child layerDFS
↔ Search Algo to Traverse depth first down Graph entire child subtree & backtrack