Fix code naming style.

This commit is contained in:
krahets
2023-10-15 21:18:09 +08:00
parent ada37fd1f8
commit 346c8451de
23 changed files with 51 additions and 51 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ void removeLink(linkList *l, Vertex *val) {
}
/* 根据顶点地址删除顶点 */
void removeNode(linkList *l, Vertex *val) {
void removeItem(linkList *l, Vertex *val) {
Node *temp = l->head->next;
Node *front = l->head;
while (temp != 0) {