线性表的创建和操作

//对顺序表的操作 #include<stdio.h> #include <stdlib.h> #include<malloc.h> #define MAXSIZE   1000 typedef char ElemType; typedef struct {  ElemType data[MAXSIZE];  int length; }SqList; //初始化线性表 void InitList(
相关文章
相关标签/搜索