typedef struct QNode{ElemType data;struct QNode *next;} QNode,*QueuePtr;typedef struct{QueuePtr front;QueuePtr rear;}LinkQueue;status Init Queue(LinkQueue &Q){Q.front=Q.rear=(QueuePtr)malloc(sizeof(QNode));if(!Q.front)return Error;Q.front->next=NULL;return OK;}Q.front=Q.rear=(QueuePtr)malloc(sizeof(QNode));
添加回答
举报
0/150
提交
取消