摘要: #include<iostream> #include<vector> using namespace std; //结构定义 #define maxSize 50 typedef struct LNode{ int data; LNode* next; }LNode,*LinkList; //头插 阅读全文
posted @ 2020-02-26 15:39 笨宝宝 阅读(252) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> using namespace std; //结构定义 #define maxSize 50 typedef struct{ int data[maxSize]; int length; }SqList; //插入元素 bool 阅读全文
posted @ 2020-02-26 12:55 笨宝宝 阅读(125) 评论(0) 推荐(0) 编辑