数据结构实验一:(1)(顺序表)线性表的各种操作SqList

#include<iostream> #include<malloc.h> #include<cstdio> #define MAXSIZE 10 using namespace std; //typedef struct SqList *L; typedef struct{         char data[MAXSIZE];         int length;     }SqList;
相关文章
相关标签/搜索