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
相關文章
相關標籤/搜索