數據結構順序表頭文件「SeqList.h」

#include "stdio.h" #include "math.h" //#define MaxSize 10 typedef int DataType; typedef struct { DataType list[MaxSize]; int size; }SeqList; void ListInitiate(SeqList *L) { L->size = 0; } int ListLeng
相關文章
相關標籤/搜索