首页 > 其他 > 详细

poj 1028

时间:2014-07-31 12:37:06      阅读:326      评论:0      收藏:0      [点我收藏+]

  他就是个栈,栈就随便写了,贴代码

bubuko.com,布布扣
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main(){
    stack<string> stack1,stack2;            string str,s1,s2;  
    str="http://www.acm.org/";              stack1.push(str);
    while(cin>>s1){
        if(s1=="QUIT")                      break;
        if(s1=="VISIT"){
            cin>>s2;   cout<<s2<<endl;        stack1.push(s2);  
            while(!stack2.empty())          stack2.pop();
        } else if(s1=="BACK"){
            if(stack1.size()>=2){  
            stack2.push(stack1.top());      stack1.pop();
            cout<<stack1.top()<<endl;    
            } else                          puts("Ignored");
          } else {
            if(!stack2.empty()){
                cout<<stack2.top()<<endl;
                stack1.push(stack2.top());  stack2.pop();      
            } else                           puts("Ignored");
        }
    }    
    return 0;
}
View Code

 

poj 1028,布布扣,bubuko.com

poj 1028

原文:http://www.cnblogs.com/Rainb/p/3880059.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!