C语言数据结构线性表求指导

C语言数据结构线性表求指导 小白入门,错误自己找不出。 #include<stdio.h> #define Maxsize 100 #define TURE 1 #define FALSE 0 #define OK 1 #define ERROR 0 typedef struct //指定一个线性表 { ElemType *elem; int length; }SqList; Status Ini
相关文章
相关标签/搜索