摘要:
#include <stdio.h> #include <stdlib.h> //定义一个双链表节点 struct Node { int date; //数据 Node* next; //下个数据 Node* last; //上个数据 }; //定义list存放node指针 struct List 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> typedef struct Array { int* data; //存储的数据 int len; //顺序表的个数 int listsize; //顺序表 阅读全文