Polish the chapter of array and linkedlist

This commit is contained in:
krahets
2023-08-17 05:13:19 +08:00
parent 0858ab91c0
commit c310edb672
26 changed files with 287 additions and 236 deletions

View File

@@ -14,7 +14,7 @@ extern "C" {
/* 链表节点结构体 */
struct ListNode {
int val; // 节点值
struct ListNode *next; // 指向下一节点的指针(引用
struct ListNode *next; // 指向下一节点的引用
};
// typedef 作用是为一种数据类型定义一个新名字