數據結構(C語言實現)之隊列(循環隊列)

隊列的介紹書上都有code 認真看書吧隊列 #include "stdio.h" #define ERROR 0 #define OVERFLOW -2 #define OK 1 typedef int Status; typedef int QElemType; #define MAXQSIZE 100 typedef struct { QElemType *base; int front
相關文章
相關標籤/搜索