News

We will be solving Maze Problem where we have to start from a point A in a maze and reach to point B avoiding obstacles. We have 3 different mazes in maze1.txt, maze2.txt and maze3.txt which we will ...
BFS or Breadth-First search is a graph traversal algorithm that starts traversing the graph from the root node and explores all the neighboring nodes. Then, it selects the nearest node and explores ...