码迷,mamicode.com
首页 > 其他好文 > 详细

poj 1028

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

标签:style   blog   http   color   os   io   art   代码   

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

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

标签:style   blog   http   color   os   io   art   代码   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!