mirror of
https://github.com/krahets/hello-algo.git
synced 2025-12-16 03:59:18 +08:00
Fix linked_list.md and hasp_map.md
This commit is contained in:
@@ -93,8 +93,8 @@
|
||||
```c title=""
|
||||
/* 链表结点结构体 */
|
||||
struct ListNode {
|
||||
int val; // 结点值
|
||||
ListNode *next; // 指向下一结点的指针(引用)
|
||||
int val; // 结点值
|
||||
struct ListNode *next; // 指向下一结点的指针(引用)
|
||||
};
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user