2026-rff_mp/stepushovgs/labyrinth/source/strategy/BFS.py

13 lines
308 B
Python
Raw Normal View History

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):
pass
2026-05-20 20:07:51 +00:00
def name(self):
return "BFS"
2026-05-20 20:07:51 +00:00
def __BSF__(self, maze: Maze):
pass