Data Structure——Science
The Science Of Uniting
壹簑煙雨任平生
这个作者很懒,什么都没留下…
展开
-
数据结构——顺序表的相关操作
#include <iostream> #include <cstdlib> #define LIST_INIT_SIZE 10 #define LIST_INCREMENT 10 #define ERROR 0 #define OK 1 typedef int ElemType; typedef struct _SqList{ ElemType* elem; int length; int listsize; }SqList; bool InitLi原创 2020-08-21 00:14:08 · 101 阅读 · 0 评论 -
数据结构——顺序表的相关操作
#include <iostream> #include <cstdlib> #define LIST_INIT_SIZE 10 #define LIST_INCREMENT 10 #define ERROR 0 #define OK 1 typedef int ElemType; typedef struct _SqList{ ElemType* elem; int length; int listsize; }SqList; bool InitLi原创 2020-08-21 00:05:15 · 98 阅读 · 0 评论