-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00001. reverse_linked_list.py
79 lines (58 loc) · 1.68 KB
/
00001. reverse_linked_list.py
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
#!/bin/python3
###### Pre-written code Block ######
class SinglyLinkedListNode:
def __init__(self, node_data):
self.data = node_data
self.next = None
def __repr__(self):
return f"{self.data}->"
class SinglyLinkedList:
def __init__(self):
self.head = None
self.tail = None
def __repr__(self):
string = ""
curr = self.head
while curr.next:
string += f"{curr.data} => "
curr = curr.next
string += f"{curr.data}"
return string
def insert_node(self, node_data):
node = SinglyLinkedListNode(node_data)
if not self.head:
self.head = node
else:
self.tail.next = node
self.tail = node
def print_singly_linked_list(node, sep):
string = ""
while node:
string += str(node.data)
node = node.next
if node:
string += sep
print(string)
##############################################
# TOD0: Add Reverse Functionality here
def reverse(llist):
if not llist or not llist.next:
return llist
head = reverse(llist.next)
headNext = llist.next
headNext.next = llist
llist.next = None
return head
##############################################
if __name__ == "__main__":
tests = 1
llist_inputs = [5, 10, 4]
for tests_itr in range(tests):
llist_count = 3
llist = SinglyLinkedList()
for i in range(llist_count):
llist_item = llist_inputs[i]
llist.insert_node(llist_item)
llist1 = reverse(llist.head)
print_singly_linked_list(llist1, " --> ")
##############################################