C关于队列的问题:是关于求队列的长度的,问题很简单,为了大家方便看,我把所有代码都贴出来
C关于队列的问题:是关于求队列的长度的,问题很简单,为了大家方便看,我把所有代码都贴出来
日期:2018-04-12 18:09:35 人气:1
#include
#include
#include
#include
#define YES 1
#define NO 0
typedef struct qnode
{
int data;
struct qnode *next;
}*QnodePtr,Qnode;
typedef struct linkqueue
{
QnodePtr front;
QnodePtr rear;
}LinkQueue;
void InitQueue(