摘要: #include "stdafx.h" #include using namespace std; #define MAXQSIZE 100 typedef int QElemType; typedef enum Status { success, fail, fatal, rangeerror, overflow }Status; typedef struct { QEl... 阅读全文
posted @ 2019-05-26 14:53 消失的白桦林 阅读(170) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include using namespace std; typedef int QElenType; typedef struct QNode { QElenType data; struct QNode * next; }QNode,*QNodePtr; typedef struct { QNodePtr front; ... 阅读全文
posted @ 2019-05-26 10:48 消失的白桦林 阅读(163) 评论(0) 推荐(0) 编辑