设已知有两个堆栈S1和S2,请用这两个堆栈模拟出一个队列Q。
所谓用堆栈模拟队列,实际上就是通过调用堆栈的下列操作函数:
-
int IsFull(Stack S)
:判断堆栈S
是否已满,返回1或0; -
int IsEmpty (Stack S )
:判断堆栈S
是否为空,返回1或0; -
void Push(Stack S, ElementType item )
:将元素item
压入堆栈S
; -
ElementType Pop(Stack S )
:删除并返回S
的栈顶元素。
实现队列的操作,即入队void AddQ(ElementType item)
和出队ElementType DeleteQ()
。
输入格式:
输入首先给出两个正整数N1
和N2
,表示堆栈S1
和S2
的最大容量。随后给出一系列的队列操作:A item
表示将item
入列(这里假设item
为整型数字);D
表示出队操作;T
表示输入结束。
输出格式:
对输入中的每个D
操作,输出相应出队的数字,或者错误信息ERROR:Empty
。如果入队操作无法执行,也需要输出ERROR:Full
。每个输出占1行。
输入样例:
3 2
A 1 A 2 A 3 A 4 A 5 D A 6 D A 7 D A 8 D D D D T
输出样例:
ERROR:Full
1
ERROR:Full
2
3
4
7
8
ERROR:Empty
思路:
把容量小的栈来入队,把容量大的栈来出队。当容量小的栈满时就将元素全部转入容量大的栈中,
其中的操作都遵循栈的出栈和入栈。两个栈就模拟成了队列,遵循先入先出。
#include<stdio.h>#include<algorithm>#include<stdlib.h>#include<string.h>using namespace std;struct SNode{int num;struct SNode * next;};typedef struct SNode * STACK;STACK create(){STACK shead = (STACK)malloc(sizeof(struct SNode));shead->next = NULL;return shead;}void push(STACK S,int number){STACK snew = (STACK)malloc(sizeof(struct SNode));snew->num = number;snew->next = S->next;S->next = snew;}int pop(STACK S){STACK p;int number;p = S->next;number = p->num;S->next = p->next;free(p);return number;}int main(void){STACK s1 = create();STACK s2 = create();int n1,n2;scanf("%d%d",&n2,&n1);int count1 = 0,count2 = 0;/*conut1代表容量小的栈中的个数,count2代表容量大的*/ while(1){char ch;int num;scanf("%c",&ch);if(ch == 'A'){scanf("%d",&num);getchar();if(count1 < n1){push(s1,num);count1++;}else{printf("ERROR:Full\n");}}else if(ch == 'D'){if(count2 > 0){printf("%d\n",pop(s2));count2--;}else{printf("ERROR:Empty\n");}}else if(ch =='T'){break;}if(count1 == n1 && count2 == 0)/*只要s1栈满,而s2空,就把s1全部转入s2*/ {while(count1 != 0){push(s2,pop(s1));count1--;count2++;}}}return 0;}