數據結構--順序隊列

seqqueue.h #ifndef __SEQQUEUE_H__ #define __SEQQUEUE_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define MAXSIZE 10 typedef int datatype; typedef struct{ datatype data[MAXSIZE]
相關文章
相關標籤/搜索