摘要:
#include <stdio.h> #include <stdlib.h> //定义一个双链表节点 struct Node { int date; //数据 Node* next; //下个数据 Node* last; //上个数据 }; //定义list存放node指针 struct List 阅读全文
posted @ 2020-03-22 22:59
神迹丶
阅读(806)
评论(0)
推荐(0)
摘要:
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> typedef struct Array { int* data; //存储的数据 int len; //顺序表的个数 int listsize; //顺序表 阅读全文
posted @ 2020-03-22 10:45
神迹丶
阅读(217)
评论(0)
推荐(0)

浙公网安备 33010602011771号