大家好,又见面了,我是全栈君。
Description
The following commands need to be supported:
BACK: Push the current page on the top of the forward stack. Pop the page from the top of the backward stack, making it the new current page. If the backward stack is empty, the command is ignored.
FORWARD: Push the current page on the top of the backward stack. Pop the page from the top of the forward stack, making it the new current page. If the forward stack is empty, the command is ignored.
VISIT : Push the current page on the top of the backward stack, and make the URL specified the new current page. The forward stack is emptied.
QUIT: Quit the browser.
Assume that the browser initially loads the web page at the URL http://www.acm.org/
Input
Output
Sample Input
VISIT http://acm.ashland.edu/ VISIT http://acm.baylor.edu/acmicpc/ BACK BACK BACK FORWARD VISIT http://www.ibm.com/ BACK BACK FORWARD FORWARD FORWARD QUIT
Sample Output
http://acm.ashland.edu/ http://acm.baylor.edu/acmicpc/ http://acm.ashland.edu/ http://www.acm.org/ Ignored http://acm.ashland.edu/ http://www.ibm.com/ http://acm.ashland.edu/ http://www.acm.org/ http://acm.ashland.edu/ http://www.ibm.com/ Ignored
Source
题意:
模拟浏览器浏览网页是前后翻页。
思路:
开两个栈。分别存储当前网页前后的网页,注意新訪问一个网页时,应该把当前网页的前面的栈清空!
代码例如以下:
#include <iostream> #include <algorithm> #include <string> #include <stack> using namespace std; stack <string>b; stack <string>f; int main() { string tt = "http://www.acm.org/"; string s; while(cin >> s) { if(s == "QUIT") break; if(s == "VISIT") { b.push(tt); cin >> tt; cout<<tt<<endl;//始终输出当前页 while(!f.empty())//当新訪问一个页面的时候把之前页面前面的清空 { f.pop(); } } else if(s == "BACK") { if(!b.empty()) { f.push(tt); tt = b.top(); b.pop(); cout<<tt<<endl;//始终输出当前页 } else cout<<"Ignored"<<endl; } else { if(!f.empty()) { b.push(tt); tt = f.top(); f.pop(); cout<<tt<<endl;//始终输出当前页 } else cout<<"Ignored"<<endl; } } return 0; }
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/115330.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...