当前位置:   article > 正文

写一段C语言队列出队的代码

队列出队代码

下面是一段简单的队列出队的代码:

  1. #include <stdio.h>
  2. #define MAX_SIZE 100
  3. int queue[MAX_SIZE];
  4. int front = 0;
  5. int rear = 0;
  6. void dequeue() {
  7. if (front == rear) {
  8. printf("队列已空,无法出队\n");
  9. return;
  10. }
  11. front = (front + 1) % MAX_SIZE;
  12. printf("出队元素:%d\n", queue[front]);
  13. }
  14. int main() {
  15. // 其他代码
  16. //
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/706922
推荐阅读
相关标签
  

闽ICP备14008679号