原创 數據結構--循環隊列(簡易)--C

#include <stdio.h> #include <stdlib.h> #include <malloc.h> /*循環隊列*/ #define OK 1 #define ERROR 0 #define OVERFLOW -2 #