本文整理汇总了C++中Queue::IsFull方法的典型用法代码示例。如果您正苦于以下问题:C++ Queue::IsFull方法的具体用法?C++ Queue::IsFull怎么用?C++ Queue::IsFull使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Queue
的用法示例。
在下文中一共展示了Queue::IsFull方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
Queue<int> queue;
queue.Enqueue(10);
queue.Enqueue(20);
cout<<queue.IsEmpty()<<endl;
cout<<queue.IsFull()<<endl;
cout<<queue.Front()<<endl;
queue.Dequeue();
cout<<queue.Front()<<endl;
return 0;
}
示例2: Run
void Airport::Run(){
int pri;
airplane p;
for(nowtime=1;nowtime<=endtime;nowtime++){
cout<<"\nThe "<<nowtime<<" Minutes";
pri=PRand(expectland);
for(int i=1;i<=pri;i++){
p=*Newairplane(p,ARRIVE);
if(airland.IsFull())NoServe(p,ARRIVE);else {airland.Add(p);if(1!=airland.Size())cout<<" waiting on runway.";}
}
pri=PRand(expectfly);
for(int i1=1;i1<=pri;i1++){
p=*Newairplane(p,FLY);
if(airfly.IsFull())NoServe(p,FLY);else {airfly.Add(p);if(1!=airland.Size()+airfly.Size())cout<<" waiting on runway.";}
}
if(airland.IsEmpty())Freeplane();
if(!airland.IsEmpty()){p=*airland.Delete(p);Land(p,3);}
else if(!airfly.IsEmpty()){p=*airfly.Delete(p);Fly(p,3);}
}
GetCalculate();
}
示例3: main
int main(int argc, const char * argv[]) {
// insert code here...
int i;
Queue<char> que; //缺省为18元素队列,可用17
char str1[]="abcdefghijklmnop";//17个元素,包括串结束符
que.MakeEmpty();
for(i=0;i<17;i++) que.EnQue(str1[i]);
if(que.IsFull()) cout<<"队满";
cout<<"共有元素:"<<que.Length()<<endl;
for(i=0;i<17;i++) cout<<que.DeQue(); //先进先出
cout<<endl;
if(que.IsEmpty()) cout<<"队空";
cout<<"共有元素:"<<que.Length()<<endl;
return 0;
}
示例4: main
int main(int argc, char *argv) {
Queue q;
char real[MAXSIZE];
int i = 0, j;
cout << "--------------------Start the Queue Operation--------------------" << endl;
cout << "Input menber" << endl;
while (!q.IsFull())
{
cin >> real[i];
q.EnterQueue(real[i]);
i++;
}
for ( j= 0; j < 5; j++)
{
cout << (char)q.data[j] ;
}
cout << endl;
cout << "Delete menber :" << q.DeleteQueue() << endl;
cout << "Get the top menber :" << q.GetHead() << endl;
system("pause");
return 0;
}