typedef struct Queue { QElemType data[MAXSIZE]; QElemType front; QElemType rear; QElemType next;}SeqQueue;SeqQueue *sq;这是结构体创建空队后实现元素e入队此时if (q->rear == MAXSIZE){ printf("队列已满"); exit(0); }和 if((q->rear+1)%MAXSIZE ==q->front){ printf("队列已满"); exit(0); } 其中if的条件是什么意思?两者有什么区别?
目前暂无任何回答
- 0 回答
- 0 关注
- 1935 浏览
添加回答
举报
0/150
提交
取消