mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-23 10:02:23 +08:00
Polish the chapter of array and linkedlist
This commit is contained in:
@@ -14,7 +14,7 @@ extern "C" {
|
||||
/* 链表节点结构体 */
|
||||
struct ListNode {
|
||||
int val; // 节点值
|
||||
struct ListNode *next; // 指向下一节点的指针(引用)
|
||||
struct ListNode *next; // 指向下一节点的引用
|
||||
};
|
||||
|
||||
// typedef 作用是为一种数据类型定义一个新名字
|
||||
|
||||
Reference in New Issue
Block a user