From 8b4ea94a65231d75411b40623171f1200d02ca16 Mon Sep 17 00:00:00 2001 From: krahets Date: Thu, 9 Mar 2023 02:39:45 +0800 Subject: [PATCH] build --- chapter_graph/graph_operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter_graph/graph_operations.md b/chapter_graph/graph_operations.md index f94def5a6..dda7ea2a5 100644 --- a/chapter_graph/graph_operations.md +++ b/chapter_graph/graph_operations.md @@ -1289,7 +1289,7 @@ comments: true class GraphAdjList { // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 - Dictionary> adjList; + public Dictionary> adjList; /* 构造函数 */ public GraphAdjList(Vertex[][] edges)