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

35 lines
981 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import time
from source.strategy.strategy import SearchStats, PathFindingStrategy
class MazeSolver:
def __init__(self, maze, strategy: PathFindingStrategy):
self.maze = maze
self.strategy = strategy
def strategyName(self):
return self.strategy.name
def setStrategy(self, strategy: PathFindingStrategy):
self.strategy = strategy
def solve(self):
start_time = time.perf_counter()
path, visited_cells = self.strategy.findPath(self.maze)
finish_time = time.perf_counter()
return SearchStats(
timeMs=finish_time - start_time,
visitedCells=visited_cells,
pathLength=len(path)
)
class SearchStats:
"""Общая информация о тесте алгоритма"""
def __init__(self, timeMs: float, visitedCells: int, pathLength: int):
self.timeMs = timeMs
self.visitedCells = visitedCells
self.pathLength = pathLength