diff --git a/codes/csharp/chapter_graph/graph_adjacency_list.cs b/codes/csharp/chapter_graph/graph_adjacency_list.cs index db76edacf..b3ec759ea 100644 --- a/codes/csharp/chapter_graph/graph_adjacency_list.cs +++ b/codes/csharp/chapter_graph/graph_adjacency_list.cs @@ -12,7 +12,7 @@ namespace hello_algo.chapter_graph; /* 基于邻接表实现的无向图类 */ class GraphAdjList { - // 邻接表,key: 顶点,value:该顶点的所有邻接结点 + // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 Dictionary> adjList; /* 构造函数 */ diff --git a/codes/java/chapter_graph/graph_adjacency_list.java b/codes/java/chapter_graph/graph_adjacency_list.java index 4f7c071e2..ed290cca9 100644 --- a/codes/java/chapter_graph/graph_adjacency_list.java +++ b/codes/java/chapter_graph/graph_adjacency_list.java @@ -11,7 +11,7 @@ import include.*; /* 基于邻接表实现的无向图类 */ class GraphAdjList { - // 邻接表,key: 顶点,value:该顶点的所有邻接结点 + // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 Map> adjList; /* 构造方法 */ diff --git a/codes/javascript/chapter_graph/graph_adjacency_list.js b/codes/javascript/chapter_graph/graph_adjacency_list.js index 20622e32f..0fa74b491 100644 --- a/codes/javascript/chapter_graph/graph_adjacency_list.js +++ b/codes/javascript/chapter_graph/graph_adjacency_list.js @@ -8,8 +8,7 @@ const { Vertex } = require('../include/Vertex') /* 基于邻接表实现的无向图类 */ class GraphAdjList { - // 邻接表,使用哈希表来代替链表,以提升删除边、删除顶点的效率 - // 请注意,adjList 中的元素是 Vertex 对象 + // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 adjList; /* 构造方法 */ diff --git a/codes/python/chapter_graph/graph_adjacency_list.py b/codes/python/chapter_graph/graph_adjacency_list.py index 5a82ce7b1..7ab5952b6 100644 --- a/codes/python/chapter_graph/graph_adjacency_list.py +++ b/codes/python/chapter_graph/graph_adjacency_list.py @@ -11,7 +11,7 @@ from include import * """ 基于邻接表实现的无向图类 """ class GraphAdjList: - # 邻接表,key: 顶点,value:该顶点的所有邻接结点 + # 邻接表,key: 顶点,value:该顶点的所有邻接顶点 adj_list = {} """ 构造方法 """ diff --git a/codes/swift/chapter_graph/graph_adjacency_list.swift b/codes/swift/chapter_graph/graph_adjacency_list.swift index 893808834..ae5d04ba5 100644 --- a/codes/swift/chapter_graph/graph_adjacency_list.swift +++ b/codes/swift/chapter_graph/graph_adjacency_list.swift @@ -8,8 +8,7 @@ import utils /* 基于邻接表实现的无向图类 */ public class GraphAdjList { - // 邻接表,使用哈希表来代替链表,以提升删除边、删除顶点的效率 - // 请注意,adjList 中的元素是 Vertex 对象 + // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 public private(set) var adjList: [Vertex: [Vertex]] /* 构造方法 */ diff --git a/codes/typescript/chapter_graph/graph_adjacency_list.ts b/codes/typescript/chapter_graph/graph_adjacency_list.ts index 7a43f4d92..a43b7fa68 100644 --- a/codes/typescript/chapter_graph/graph_adjacency_list.ts +++ b/codes/typescript/chapter_graph/graph_adjacency_list.ts @@ -8,8 +8,7 @@ import { Vertex } from "../module/Vertex"; /* 基于邻接表实现的无向图类 */ class GraphAdjList { - // 邻接表,使用哈希表来代替链表,以提升删除边、删除顶点的效率 - // 请注意,adjList 中的元素是 Vertex 对象 + // 邻接表,key: 顶点,value:该顶点的所有邻接顶点 adjList: Map; /* 构造方法 */