Depth Limited Search -Uniformed or Blind search
Depth Limited Search (DLS): DLS is a variation of DFS. If we put a limit l on how deep a depth first search can go, we can guarantee that the search will terminate (either in success or failure). If there is at least one goal state at a depth less than l, this algorithm is guaranteed […]