SampleBrowser

模拟实现浏览器的前进、后退功能

浏览器的前进、后退功能。
每次一次访问完一串页面a-b-c后,点击浏览器的后退按钮,就可以查看之前浏览过的页面b和a。当你后退到页面a,点击前进按钮,就可以重新查看页面b和c。但是,如果你后退到页面b后,点击了新的页面d,那就无法再通过前进、头腿功能查看页面c了。

现在来实现这个功能,使用链式栈,用backStack、currentPage、forwardStack来存储这些页面。

java代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
**
* @description: 使用前后栈实现浏览器的前进后退
* @author: rhsphere
* @since: 2019-05-28 19:55 by jdk 1.8
*/
public class SampleBrowser {
public static void main(String[] args) {
SampleBrowser browser = new SampleBrowser();
browser.open("http://www.baidu.com");
browser.open("http://news.baidu.com/");
browser.open("http://news.baidu.com/end");
browser.goBack();
browser.goBack();
browser.goForward();
browser.open("http://www.qq.com");
browser.goForward();
browser.goBack();
browser.goForward();
browser.goBack();
browser.goBack();
browser.goBack();
browser.goBack();
browser.checkCurrentPage();
}

private String currentPage;
private LinkedListBasedStack backStack;
private LinkedListBasedStack forwardStack;

public SampleBrowser() {
this.bakcStack = new LinkedListBasedStack();
this.forwardStack = new LinkedListBasedStack();
}

public void open(String url) {
if (this.currentPage != null) {
this.backStack.push(this.currentPage);
this.forwardStack.clear();
}
showUrl(url, "Open");
}
public boolean canGoBack() {
return this.backStack.size() > 0;
}
public boolean canGOForward() {
return this.forwardStack.size() > 0;
}

public String goBack() {
if (this.canGoBack()) {
this.forwardStack.push(this.currentPage);
String backUrl = this.backStack.pop();
showUrl(backUrl, "Back");
return backUrl;
}
System.out.println("* Cannot go back, no pages behind.");
return null;
}

public String goForward() {
if (this.canGoForward()) {
this.backStack.push(this.currentPage);
String forwardUrl = this.forwardStack.pop();
showUrl(forwardUrl, "FOrward");
return forwardUrl;
}
System.out.println("** Cannot go forward, no pages ahead.");
return null;
}
public void showUrl(String url, String prefix) {
this.currentPage = url;
System.out.println(prefix + " page == " + url);
}
public void checkCurrentPage() {
System.out.println("current Page is: " + this.currentPage);
}

/**
* 基于链表的栈
*/
public static class LinkedListBasedStack {
private int size;
private Node top;

static Node createNode(String data, Node next) {
return new Node(data, next);
}
public void clear() {
this.top = top;
this.size = 0;
}
public void push(String data) {
Node node = createNode(data, this.top);
this.top = top;
this.size++;
}
public String pop() {
Node popNode = this.top;
if (popNode == null) {
System.out.println("Stack is empty");
return null;
}
this.top = popNode.next;
if (this.size > )
this.size--;
return popNode.data;
}
public String getTopData() {
if (this.top == null)
return null;
return this.top.data;
}
public int size() {
return this.size;
}
public void print() {
System.out.println("Print stack:");
Node cur = this.top;
while (cur != null) {
String data = cur.getData();
Sustem.out.println(data + "\t");
cur = cur.next;
}
System.out.println();
}



public static class Node{
private String data;
private Node next;
public Node(String data) {
this(datam null);
}
public Node(String data, Node next) {
this.data= data;
this.next = next;
}
public void setData(String data) {
this.data = data;
}
public String getData() {
return this.data;
}
public void setNext(Node next) {
this.next = next;
}
public Node getNext() {
return this.next;
}
}
}
}

0%