09 2020 档案
摘要:###数据结构2-顺序表的建立、删除、遍历和插入操作 #include<stdio.h> #include<iostream> #define MaxSize 10 using namespace std; typedef struct //定义顺序表结构体 { int data[MaxSize];
阅读全文
摘要:###数据结构1-单链表的头插法、尾插法建立及遍历 #include<stdio.h> #include<iostream> #include<stdlib.h> #include<cstdlib> #include<cstring> using namespace std; //定义单链表结构体
阅读全文

浙公网安备 33010602011771号