Replace "结点" with "节点".

This commit is contained in:
krahets
2023-10-27 23:24:13 +08:00
parent 7605cab160
commit 5385057993
7 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ void removeVertex(GraphAdjList *graph, unsigned int index) {
printf("Out of range in %s:%d\n", __FILE__, __LINE__);
return;
}
// 遍历待删除顶点的链表,将所有与待删除点有关的边删除
// 遍历待删除顶点的链表,将所有与待删除点有关的边删除
Node *temp = vet->list->head->next;
while (temp != 0) {
removeLink(temp->val->list, vet); // 删除与该顶点有关的边