2026-05-20 18:42:45 +00:00
|
|
|
from source.strategy.strategy import PathFindingStrategy
|
|
|
|
|
from source.classes.maze import Maze
|
|
|
|
|
from source.classes.cell import Cell
|
|
|
|
|
|
|
|
|
|
class BFS(PathFindingStrategy):
|
2026-05-20 20:07:51 +00:00
|
|
|
def findPath(self, maze: Maze):
|
2026-05-20 18:42:45 +00:00
|
|
|
pass
|
2026-05-20 20:07:51 +00:00
|
|
|
|
|
|
|
|
def name(self):
|
|
|
|
|
return "BFS"
|
2026-05-20 18:42:45 +00:00
|
|
|
|
2026-05-20 20:07:51 +00:00
|
|
|
def __BSF__(self, maze: Maze):
|
2026-05-20 18:42:45 +00:00
|
|
|
pass
|