Unverified Commit b76b720e authored by Shuhao Zhang's avatar Shuhao Zhang Committed by GitHub
Browse files

fix(astar): fix format

parent b99184bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ A\*算法是 [BFS](./bfs.md) 的一种改进。

从起点(初始状态)开始的距离函数 $g(x)$ 。

到终点(最终状态)的距离函数 $h(x), h^*(x)$ 。
到终点(最终状态)的距离函数 $h(x), h^{\ast}(x)$ 。

定义每个点的估价函数 $f(x)=g(x)+h(x)$ 。