摘要: 链表的相关操作 #pragma once // 编程的接口(API) // *.h 文件中一般会放:类型的定义,函数的声明,全局变量 #include <stdbool.h> typedef struct node { int val; struct node* next; } Node; type 阅读全文
posted @ 2023-06-01 15:58 MyXjl 阅读(4) 评论(0) 推荐(0) 编辑