線性表的創建和操作

//對順序表的操作 #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(
相關文章
相關標籤/搜索