摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 struct quene 7 { 8 int count; 9 int number[MAXSIZE]; 10 int front; 11 int end; 12 }; 13 14 15 void in... 阅读全文
posted @ 2017-02-25 11:01 郑哲 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 struct quene 7 { 8 int count; 9 int number[MAXSIZE]; 10 int front; 11 int end; 12 }; 13 14 15 void in... 阅读全文
posted @ 2017-02-25 10:52 郑哲 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<ctime>using namespace std; struct node{ int number; node *next;}; struct quene{ int count; node *front; node *end;}; void i 阅读全文
posted @ 2017-02-25 10:25 郑哲 阅读(167) 评论(0) 推荐(0) 编辑