约瑟夫环 (队列实现)

#include "stdio.h" #include<stdlib.h> #define MAXQSIZE 100 #define TRUE 1 #define OK 1 #define FALSE 0 #define OVERFLOW 0 typedef struct{ int *elem; int front; //队头指针 int rear; //队尾指
相关文章
相关标签/搜索