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

队列框架

时间:2018-02-19 10:29:30      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:names   and   ==   sem   hand   tail   bool   fine   def   

#include<iostream>
#define LEN 5010
using namespace std;
int Q[LEN],hand=0,tail=0; 
void enqueue(int x);
int dequeue();
bool isEmpty();
int main()
{

}

void enqueue(int x)
{
    Q[tail]=x;
    tail=(tail+1)%LEN;
}

int dequeue()
{
    if(isEmpty())
    {
    hand=(hand+1)%LEN;
    return Q[hand-1];
    }else return 0;    
}

bool isEmpty()
{
    if(tail==hand) 
    return 0;
    else 
    return 1;
}

 

队列框架

标签:names   and   ==   sem   hand   tail   bool   fine   def   

原文地址:https://www.cnblogs.com/incotnigo/p/8453417.html

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