👀 Visualizations
Created various algorithmic visualizations for fun.
• Maze creation (backtracing)
• Path finding (A*, BFS, Dijkstra)
• Mathematics (Conway's game of life, sinusoidal functions)
Maze Generation
Maze generation using recursive backtracking algorithm. Then some walls are removed, and the edge of the maze is created.
Maze Pathfinding
Visualization of A* and Dijkstra’s algorithm on randomly generated mazes.
A* is blue and gets lighter, Dijkstra’s is red and gets darker.
Running along the found paths in the maze.