赞
踩
下面是一段简单的队列出队的代码:
- #include <stdio.h>
- #define MAX_SIZE 100
-
- int queue[MAX_SIZE];
- int front = 0;
- int rear = 0;
-
- void dequeue() {
- if (front == rear) {
- printf("队列已空,无法出队\n");
- return;
- }
- front = (front + 1) % MAX_SIZE;
- printf("出队元素:%d\n", queue[front]);
- }
-
- int main() {
- // 其他代码
-
- //
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。