[LeetCode] Design Browser History

1472. Design Browser History

You have a browser of one tab where you start on the homepage and you can visit another url, get back in the history number of steps or move forward in the history number of steps.

Implement the BrowserHistory class:

  • BrowserHistory(string homepage) Initializes the object with the homepage of the browser.
  • void visit(string url) Visits url from the current page. It clears up all the forward history.
  • string back(int steps) Move steps back in history. If you can only return x steps in the history and steps > x, you will return only x steps. Return the current url after moving back in history at most steps.
  • string forward(int steps) Move steps forward in history. If you can only forward x steps in the history and steps > x, you will forward only x steps. Return the current url after forwarding in history at most steps.
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
class BrowserHistory {
vector<string> history;
int cur;
int last;
public:
BrowserHistory(string homepage) : cur(0), last(0) {
history.push_back(homepage);
}

void visit(string url) {
if(cur == history.size() - 1) {
history.push_back(url);
cur++;
last++;
} else {
history[last = ++cur] = url;
}
}

string back(int steps) {
cur = max(cur - steps, 0);
return history[cur];
}

string forward(int steps) {
cur = min(cur + steps, last);
return history[cur];
}
};

/**
* Your BrowserHistory object will be instantiated and called as such:
* BrowserHistory* obj = new BrowserHistory(homepage);
* obj->visit(url);
* string param_2 = obj->back(steps);
* string param_3 = obj->forward(steps);
*/
Author: Song Hayoung
Link: https://songhayoung.github.io/2021/05/15/PS/LeetCode/design-browser-history/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.