首页 > 代码库 > poj 1028
poj 1028
他就是个栈,栈就随便写了,贴代码
#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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。