码迷,mamicode.com
首页 > 其他好文 > 详细

环形队列

时间:2017-09-10 17:42:11      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ret   blog   front   int   log   style   const   nbsp   div   

  1. 将数组queue[mMaxSize]视为环,队列头指针front,尾指针rear,为了避免二义性,最多只容纳mMaxSize-1个元素;
  2. front == rear时,队列为空;front == (rear+1) % mMaxSize时,队列为满;
  3. front所指处不放元素;
  4. void queueAdd(const int x) {
        int k = (rear + 1) % mMaxSize;
        if (front == k) 
            QueueFull();
        else {
            queue[k] = x;
            rear = k;
        } 
    }
    int  queueDelete() {
        if (front == rear) {
            QueueEmpty();
            return 0;
        }
        front = (front+1) % mMaxSize;
        return queue[front]; 
    }

     

环形队列

标签:ret   blog   front   int   log   style   const   nbsp   div   

原文地址:http://www.cnblogs.com/mycodepqq/p/7501458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!