Projects with this topic
Sort by:
-
This Python code employs the Depth-First Search (DFS) algorithm to find a path from "Arad" to "Bucharest" in the Romania map. It uses a priority queue, backtracking, and a graph representation. The DFS path is printed at the end. Skills demonstrated include graph traversal, priority queue usage, and DFS algorithm implementation.
Updated -
-
The goal of this project is to generate mazes (done in a reasonable amount of time), solve them (from 4 different ways and done in a reasonable amount of time), and print the solution.
Updated