摘要: 1 #include 2 #include 3 using namespace std; 4 5 struct linknode 6 { 7 int number; 8 linknode *next; 9 }; 10 11 12 struct linkstack 13 { 14 int count; 15 linknode *top; 16... 阅读全文
posted @ 2017-02-24 13:29 郑哲 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1 #define MAXSIZE 100 2 3 struct doublestack 4 { 5 int number[MAXSIZE]; 6 int top1=-1; 7 int top2=MAXSIZE; 8 }; 9 10 11 void Push(doublestack *s, int e, int n) 12 { 13 //栈... 阅读全文
posted @ 2017-02-24 13:03 郑哲 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 7 struct stack 8 { 9 int number[MAXSIZE]; 10 int top=-1; 11 }; 12 13 bool Push(stack *s, int e) 14 { 15 i... 阅读全文
posted @ 2017-02-24 11:15 郑哲 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<ctime> 3 using namespace std; 4 5 struct list 6 { 7 int number; 8 list *prior; 9 list *next; 10 }; 11 12 13 int FindLi 阅读全文
posted @ 2017-02-24 10:38 郑哲 阅读(100) 评论(0) 推荐(0) 编辑