OSDN Git Service

style: format markdown files with remark-lint
author24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Sun, 13 Oct 2019 05:12:29 +0000 (01:12 -0400)
committer24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Sun, 13 Oct 2019 05:12:29 +0000 (01:12 -0400)
docs/graph/shortest-path.md

index 1fc7afe..b995dd1 100644 (file)
@@ -100,7 +100,7 @@ for (k = 1; k <= n; k++) {
 
 先定义 $dist(u)$ 为 $S$ 到 $u$ (当前)的最短路径长度。
 
- $relax(u,v)$ 操作指: $dist(v) = min(dist(v), dist(u) + edge\_len(u, v))$ .
+ $relax(u,v)$ 操作指 $dist(v) = min(dist(v), dist(u) + edge\_len(u, v))$ .
 
  $relax$ 是从哪里来的呢?