2026-rff_mp/MusinAA/task2/strategyObjects/DFS.py

9 lines
374 B
Python
Raw Normal View History

from task2.strategyObjects.pathFindingStrategy import PathFindingStrategy
from task2.mazeObjects.maze import Maze
from task2.mazeObjects.cell import Cell
class DFS(PathFindingStrategy):
"""Поиск в глубину быстрый, но не обязательно кратчайший."""
def findPath(self, maze: Maze, start: Cell, exit: Cell):
...