數據結構實驗一:(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;
相關文章
相關標籤/搜索