Maze Solving Algorithms: Difference between revisions

From wikiluntti
 
Line 8: Line 8:
# Maze-routing algorithm
# Maze-routing algorithm
# Shortest path algorithm
# Shortest path algorithm
## breadth-first search
## breadth-first search (BFS)
## the A* algorithm
## the A* algorithm
## Depth-First Search (DFS).
## Dijkstra’s Algorithm
# Multi-agent maze-solving
# Multi-agent maze-solving



Latest revision as of 15:52, 5 April 2026

Introduction

  1. Random movement algorithm
  2. Hand-on-Wall rule (works If the maze is simply connected)
  3. Pledge algorithm
  4. Trémaux's algorithm. A junction may have multiple entrances, and a passage has an entrance at both ends. Dead-end.
  5. Dead-end filling
  6. Maze-routing algorithm
  7. Shortest path algorithm
    1. breadth-first search (BFS)
    2. the A* algorithm
    3. Depth-First Search (DFS).
    4. Dijkstra’s Algorithm
  8. Multi-agent maze-solving

Dead-end filling