摘要:
#include "stdafx.h"#includeusing namespace std;#includetypedef int ElemType;#define OK 1 //正确#define ERROR 0 //失败typedef struct QNode{ ElemType data; //数据域 QNode *next; //下个节点指针域}QNode,*QNodePtr;typedef struct{ QNodePtr front; QNodePtr rear; ... 阅读全文