-
Notifications
You must be signed in to change notification settings - Fork 65
/
reverse_singly_list.py
64 lines (51 loc) · 1.58 KB
/
reverse_singly_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
""" Reverse singly linked lists
input: 1 -> 5 -> 7 -> 9 -> 10
output: 10 -> 9 -> 7 -> 5 -> 1
"""
class Node:
""" Node class contains everything related to Linked List node """
def __init__(self, data):
""" initializing single node with data """
self.data = data
self.next = None
class LinkedList:
""" Singly Linked List is a linear data structure """
def __init__(self):
""" initializing singly linked list with zero node """
self.head = None
def insert_head(self, data):
""" inserts node at the start of linked list """
node = Node(data)
node.next = self.head
self.head = node
def print(self):
""" prints entire linked list without changing underlying data """
current = self.head
while current is not None:
print(" ->", current.data, end="")
current = current.next
print()
def reverse(self):
""" reverse linked list """
previous = None
following = None
current = self.head
while current is not None:
following = current.next
current.next = previous
previous = current
current = following
self.head = previous
def main():
""" operational function """
linkedlist = LinkedList()
linkedlist.insert_head(10)
linkedlist.insert_head(9)
linkedlist.insert_head(7)
linkedlist.insert_head(5)
linkedlist.insert_head(1)
linkedlist.print()
linkedlist.reverse()
linkedlist.print()
if __name__ == '__main__':
main()