Depth-First Search

Explore graphs by going as deep as possible before backtracking. Perfect for maze solving and tree traversal.

Start DFS Tutorial

Breadth-First Search

Explore graphs level by level and find shortest paths on unweighted graphs.

Start BFS Tutorial

A* Search(WIP)

Heuristic-guided pathfinding that is both optimal and efficient. Widely used in games, AI, and robotics.

Start A* Tutorial