OSDN Git Service

Update docs/graph/bridge.md
authorGavinZhengOI <33168669+GavinZhengOI@users.noreply.github.com>
Fri, 6 Sep 2019 06:46:54 +0000 (14:46 +0800)
committerGitHub <noreply@github.com>
Fri, 6 Sep 2019 06:46:54 +0000 (14:46 +0800)
Co-Authored-By: ouuan <y___o___u@126.com>
docs/graph/bridge.md

index af1623e..c5111ea 100644 (file)
@@ -22,7 +22,7 @@
 
 这些信息被我们保存在一个叫做 `num` 的数组中。
 
-还需要另外一个数组 `low` ,用它来存储不经过其父亲(你有多个那么就看你遍历到了哪个)能到达的最小的时间戳。
+还需要另外一个数组 `low` ,用它来存储不经过其父亲能到达的最小的时间戳。
 
 例如 `low[2]` 的话是 1, `low[5]` 和 `low[6]` 是 3。