This commit is contained in:
krahets
2023-03-11 00:00:24 +08:00
parent 8b4ea94a65
commit d24e50d4e0
2 changed files with 3 additions and 3 deletions

View File

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