From 5ccc364dcf9bfad1440a68a2198862c8e93aec11 Mon Sep 17 00:00:00 2001 From: mgt Date: Thu, 28 Jan 2021 12:34:24 +0800 Subject: [PATCH] Update docs/graph/shortest-path.md --- docs/graph/shortest-path.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/graph/shortest-path.md b/docs/graph/shortest-path.md index 1fb0db94..60a78ec3 100644 --- a/docs/graph/shortest-path.md +++ b/docs/graph/shortest-path.md @@ -270,7 +270,7 @@ for (i = 1; i <= n; i++) { } ``` -或者说一个 `C++` 代码: +以下是该算法的 C++ 实现 ```C++ vector> Ps; // 图的邻接矩阵 -- 2.11.0