📄 queuelength.cpp
字号:
//QueueLength.cpp
//This program is to calculate the length of the SqQueue
# include <malloc.h>
# include <iostream.h>
# include <conio.h>
# define QElemType int
# define MAXQSIZE 100
# define LENGTH 10
# define OK 1
# define ERROR 0
static int array[LENGTH]={5,8,12,18,25,30,37,46,51,89};
typedef struct SqQueue //define structure SqQueue
{ QElemType *base;
int front;
int rear;
}SqQueue;
int EnQueue(SqQueue &Q,QElemType e) //EnQueue() sub-function
{ if((Q.rear+1)%MAXQSIZE==Q.front)
{ cout<<"Errer ! The SqQeueu is full ! ";
return (ERROR);
}
Q.base[Q.rear]=e;
Q.rear=(Q.rear+1)%MAXQSIZE;
return (OK);
} //EnQueue() end
int QueueLength(SqQueue Q) //QueueLength() sub-function
{ return ((Q.rear-Q.front+MAXQSIZE)%MAXQSIZE);
}
void main() //main() function
{ int i,e=1;
SqQueue Q;
Q.base=(QElemType *)malloc(MAXQSIZE*sizeof(QElemType));
Q.front=Q.rear=0;
cout<<endl<<endl<<"QueueLength.cpp";
cout<<endl<<"==============="<<endl<<endl;
while(e)
{ cout<<"Please input the integer to insert (eg,58; 0 for exit) : ";
cin>>e;
if (e)
EnQueue(Q,e);
}
cout<<endl<<"The length of SqQueue is "<<QueueLength(Q);
cout<<endl<<endl<<"...OK!...";
getch();
} //main() end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -