Fix linked_list.md and hasp_map.md

This commit is contained in:
krahets
2023-03-11 00:00:15 +08:00
parent c5f392fea2
commit b7fa3bbe86
2 changed files with 3 additions and 3 deletions

View File

@@ -93,8 +93,8 @@
```c title=""
/* 链表结点结构体 */
struct ListNode {
int val; // 结点值
ListNode *next; // 指向下一结点的指针(引用)
int val; // 结点值
struct ListNode *next; // 指向下一结点的指针(引用)
};
```