From 57441c2ab5ac91d29e6f88e3c894e3acb5979ac6 Mon Sep 17 00:00:00 2001 From: weixin_46229132 Date: Sun, 4 May 2025 21:52:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=95=B0=E6=8D=AE=E8=A1=A8?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- navigate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/navigate.py b/navigate.py index cb08f51..27e755f 100644 --- a/navigate.py +++ b/navigate.py @@ -52,8 +52,8 @@ def a_star(start, goal): if __name__ == "__main__": # 停车场状态矩阵 parking_lot = [ - [3, 2, 2, 0, 2, 2, 2], - [3, 1, 1, 0, 1, 1, 1], + [1, 1, 1, 0, 1, 1, 1], + [1, 1, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0, 0] ]