堆栈模拟队列

  点击打开链接
#include<cstdio>  
#include<algorithm>  
#include<stack>  
#include<cstring>
using namespace std;     
//typedef struct SNode{  
//    int num;  
//    struct SNode * next;  
//}*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(); 
	    stack<int> s1;
	    stack<int> s2;
        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); 
				   s1.push(num);  
                    count1++;  
                }  
                else  
                {  
                    printf("ERROR:Full\n");  
                }  
            }  
            else if(ch == 'D')  
            {  
                if(!s2.empty())  
                {   
				    int item = s2.top();
				    s2.pop();
                    printf("%d\n",item);  //  printf("%d\n", pop(s2));
                    //count2--;  
                }  
                else  
                {  
                    printf("ERROR:Empty\n");  
                }  
            }  
            else if(ch =='T')  
            {  
                break;  
            }  
              
            if(count1 == n1 && s2.empty())/*只要s1栈满,而s2空,就把s1全部转入s2*/   
            {  
                while(!s1.empty())  
                {  
                    int j = s1.top();
				    s1.pop();
                    s2.push(j);
                    // push(s2,pop(s1));  
                    count1--;  //此处注意count1要减
                    //count2++;  
                }  
            }  
        }     
    return 0;  
}  

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值