程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj 1028 Web Navigation

poj 1028 Web Navigation

編輯:C++入門知識

#include <iostream>
#include <string>
#include <stack>
using namespace std;
int main(){
string input;
string url;
stack<string> past;
stack<string> future;
past.push("http://www.acm.org/");
/*
past.push("hello1");
past.push("hello2");
cout<<past.top();
past.pop();
cout<<past.top();
*/
while(cin>>input){
if(input[0]=='B'){
//cout<<"BACK"<<endl;
if(past.size()<=1){
cout<<"Ignored"<<endl;
}
else{
future.push(past.top());
past.pop();
cout<<past.top()<<endl;
}
}
else if(input[0]=='F'){
//cout<<"FORWARD"<<endl;
if(future.empty()){
cout<<"Ignored"<<endl;
}
else{
cout<<future.top()<<endl;
past.push(future.top());
future.pop();
}
}
else if(input[0]=='V'){
//cout<<"VISIT"<<endl;
cin>>url;
past.push(url);
cout<<url<<endl;
while(!future.empty()){
future.pop();
}
}
else if(input[0]=='Q'){
//cout<<"QUIT"<<endl;
}

}
return 0;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved