Breadth First Search

Controls

SEARCHING ALGORITHM

Card image cap
Breadth First Search

From the tree root it explores all of the neighbor nodes at the present depth prior to moving on to the nodes at next depth level.

More
Card image cap
Depth First Search

It starts at the tree root and explores as far as possible along each branch in it's descendant before backtracking.

More
Card image cap
Dijkstra Algorithm

For a given source node in the graph, the algorithm finds the shortest path between that node and every other.

More
Card image cap
A* Algorithm

It is an informed search algorithm, as it uses information about path cost and also uses heuristics to find the solution.

More

FEATURES

icon

Shortest Path Visualizer

Dijkstra Algorithm A* Algorithm
icon

Searching Visualizer

Breadth First Search Depth First Search
icon

Maze Visualization

Uniform Weighted Path 4 Neighbours