考研數據結構之順序表 (待續)

考研數據結構之順序表 (待續) //順序表專題 #include <stdio.h> #include <malloc.h> #define MAXSIZE 100 //結構體定義 typedef struct{ int data[MAXSIZE]; int length; }sqlist; //@function 將元素e插入在順序表中的第i個位置上 //@p
相關文章
相關標籤/搜索