Standard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features is to use two stacks to keep track of the pages that can be reached by moving backward and forward. You are asked to implement this. The commands are:
1. BACK: If the backward stack is empty, the command is ignored. Otherwise, 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.
2. FORWARD: If the forward stack is empty, the command is ignored. Otherwise, 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.
3. VISIT <url>: 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.
4. QUIT: Quit the browser.
The browser initially loads the web page at the URL 'http://www.lightoj.com/'
Input starts with an integer T (≤ 100), denoting the number of test cases.
Each case contains some commands. The keywords BACK, FORWARD, VISIT, and QUIT are all in uppercase. URLs have no whitespace and have at most 50 characters. The end of case is indicated by the QUIT command and it shouldn't be processed. Each case contains at most 100 lines.
For each case, print the case number first. For each command, print the URL of the current page (in a line) after the command is executed if the command is not ignored. Otherwise, print 'Ignored'.
1
VISIT http://uva.onlinejudge.org/
VISIT http://topcoder.com/
BACK
BACK
BACK
FORWARD
VISIT http://acm.sgu.ru/
BACK
BACK
FORWARD
FORWARD
FORWARD
QUIT
Case 1:
http://uva.onlinejudge.org/
http://topcoder.com/
http://uva.onlinejudge.org/
http://www.lightoj.com/
Ignored
http://uva.onlinejudge.org/
http://acm.sgu.ru/
http://uva.onlinejudge.org/
http://www.lightoj.com/
http://uva.onlinejudge.org/
http://acm.sgu.ru/
Ignored
分析:题目很简单,就不说了,直接上代码,注意一开始的那个页面
import java.util.*;
public class Main{
static Scanner in = new Scanner(System.in);
public static void main(String args[]){
int k=in.nextInt();
int ca = 0;
Stack<String> back = new Stack<>();
Stack<String> forward = new Stack<>();
boolean f = true;
while(k-->0){
back.clear();
forward.clear();
ca++;
System.out.println("Case "+ca+":");
String curent = "http://www.lightoj.com/";
String url = "";
while(f){
String s = in.next();
if(s.equals("QUIT")){
f = false;
break;
}
else if(s.equals("BACK")){
if(back.isEmpty())
System.out.println("Ignored");
else{
forward.push(curent);
curent = back.pop();//更新当前页面
System.out.println(curent);
}
}
else if(s.equals("FORWARD")){
if(forward.isEmpty())
System.out.println("Ignored");
else{
back.push(curent);
curent = forward.pop();//更新当前页面
System.out.println(curent);
}
}
else{
url = in.next();
back.push(curent);
forward.clear();
curent = url; //更新当前页面
System.out.println(curent);
}
}
}
}
}