iMmmm33u
iMmmm33u
全部文章
分类
未归档(2)
归档
标签
去牛客网
登录
/
注册
iMmmm33u的博客
全部文章
(共2篇)
单链表尾插法
单链表尾插法 #include <stdio.h> #include <stdlib.h> typedef struct Node { int val; struct Node* next; } Node; // 创建链表 Node* create() {...
C
链表
2024-12-19
1
40
单链表头插法
单链表头插法 #include <stdio.h> #include <stdlib.h> typedef struct Node { int val; struct Node* next; } Node; // 单链表 // 初始化 Node* crea...
C
链表
2024-12-19
0
31