數據結構--順序表

seqlist.h #ifndef __SEQLIST_H__ #define __SEQLIST_H__ #define MAXSIZE 100 typedef int data_t; typedef struct{ data_t data[MAXSIZE]; int last; }seqlist_t; seqlist_t *create_seqlist(void); void cle
相關文章
相關標籤/搜索