摘要: #include<iostream> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; typedef int QElemType; typedef struct QNo 阅读全文
posted @ 2015-05-23 22:41 wojiaohuangyu 阅读(18) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define MAXSIZE 100 typedef int QElemType; typedef int Status 阅读全文
posted @ 2015-05-23 17:38 wojiaohuangyu 阅读(12) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; #define OK 1 #define ERROR -1 #define OVERFLOW -2 typedef int Status; typedef struct SNode{ int data; struct S 阅读全文
posted @ 2015-05-23 15:38 wojiaohuangyu 阅读(19) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; typedef struct SNode{ int data; struct SN 阅读全文
posted @ 2015-05-23 13:34 wojiaohuangyu 阅读(14) 评论(0) 推荐(0)