@@ -3,7 +3,6 @@ class DLL:
3
3
a doubly linked list that holds the current page,
4
4
next page, and previous page.
5
5
Used to enforce order in operations.
6
- This is a change to the file
7
6
"""
8
7
def __init__ (self , val : str = None ):
9
8
self .val = val
@@ -15,61 +14,82 @@ class BrowserHistory:
15
14
"""
16
15
This class designs the operations of a browser history
17
16
18
- It works by using a doubly linked list to hold the urls
17
+ It works by using a doubly linked list to hold the urls with optimized
18
+ navigation using step counters and memory management
19
19
"""
20
20
21
21
def __init__ (self , homepage : str ):
22
22
"""
23
23
Returns - None
24
- Input - None
24
+ Input - str
25
25
----------
26
26
- Initialize doubly linked list which will serve as the
27
27
browser history and sets the current page
28
+ - Initialize navigation counters
28
29
"""
29
- self .head = DLL (homepage )
30
- self .curr = self .head
30
+ self ._head = DLL (homepage )
31
+ self ._curr = self ._head
32
+ self ._back_count = 0
33
+ self ._forward_count = 0
31
34
32
35
def visit (self , url : str ) -> None :
33
36
"""
34
37
Returns - None
35
38
Input - str
36
39
----------
37
40
- Adds the current url to the DLL
38
- - sets both the next and previous values
41
+ - Sets both the next and previous values
42
+ - Cleans up forward history to prevent memory leaks
43
+ - Resets forward count and increments back count
39
44
"""
40
- url_node = DLL ( url )
41
- self .curr .nxt = url_node
42
- url_node . prev = self . curr
45
+ # Clear forward history to prevent memory leaks
46
+ self ._curr .nxt = None
47
+ self . _forward_count = 0
43
48
44
- self .curr = url_node
49
+ # Create and link new node
50
+ url_node = DLL (url )
51
+ self ._curr .nxt = url_node
52
+ url_node .prev = self ._curr
45
53
54
+ # Update current node and counts
55
+ self ._curr = url_node
56
+ self ._back_count += 1
46
57
47
58
def back (self , steps : int ) -> str :
48
59
"""
49
60
Returns - str
50
61
Input - int
51
62
----------
52
- - Iterates through the DLL backwards `step` number of times
53
- - returns the appropriate value
63
+ - Moves backwards through history up to available steps
64
+ - Updates navigation counters
65
+ - Returns current page URL
54
66
"""
55
- while steps > 0 and self .curr .prev :
56
- self .curr = self .curr .prev
67
+ # Only traverse available nodes
68
+ steps = min (steps , self ._back_count )
69
+ while steps > 0 :
70
+ self ._curr = self ._curr .prev
57
71
steps -= 1
58
- return self .curr .val
59
-
72
+ self ._back_count -= 1
73
+ self ._forward_count += 1
74
+ return self ._curr .val
60
75
61
76
def forward (self , steps : int ) -> str :
62
77
"""
63
78
Returns - str
64
79
Input - int
65
80
----------
66
- - Iterates through the DLL forewards `step` number of times
67
- - returns the appropriate value
81
+ - Moves forward through history up to available steps
82
+ - Updates navigation counters
83
+ - Returns current page URL
68
84
"""
69
- while steps > 0 and self .curr .nxt :
70
- self .curr = self .curr .nxt
85
+ # Only traverse available nodes
86
+ steps = min (steps , self ._forward_count )
87
+ while steps > 0 :
88
+ self ._curr = self ._curr .nxt
71
89
steps -= 1
72
- return self .curr .val
90
+ self ._forward_count -= 1
91
+ self ._back_count += 1
92
+ return self ._curr .val
73
93
74
94
75
95
if __name__ == "__main__" :
0 commit comments