摘要:
一、栈 特性:先进后出,顺序存储 #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <stdbool.h> #define CAPACITY 3 //默认初识容量 typedef int SData; typede 阅读全文
posted @ 2023-03-08 23:41
运气姐姐
阅读(68)
评论(0)
推荐(0)
摘要:
一、无头结点单链表 #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <stdbool.h> typedef int NodeData; typedef struct ListNode { NodeData dat 阅读全文
posted @ 2023-03-08 15:27
运气姐姐
阅读(33)
评论(0)
推荐(0)
浙公网安备 33010602011771号