forked from hansrajdas/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreverse_linked_list.py
92 lines (74 loc) · 1.55 KB
/
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
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/python
# Date: 2018-09-16
#
# Description:
# Reverse a linked list.
#
# Approach:
# Take 3 pointers to keep track of previous, current and next node in linked
# list. Loop until current is not null and reverse pointers.
# After loop update head with previous.
#
# Reference:
# https://medium.com/outco/reversing-a-linked-list-easy-as-1-2-3-560fbffe2088
#
# Complexity:
# O(n)
class Node:
def __init__(self, data):
self.data = data
self.next = None
class LinkedList:
def __init__(self):
self.head = None
def traverse(self):
current = self.head
while current:
print current.data
current = current.next
def insert_at_end(self, data):
new_node = Node(data)
if self.head is None:
self.head = new_node
return None
current = self.head
while current.next:
current = current.next
current.next = new_node
def reverse(self):
"""Reverses a linked list."""
previous = None
current = self.head
nxt = self.head
while current:
nxt = nxt.next
current.next = previous
previous = current
current = nxt
self.head = previous
def main():
linked_list = LinkedList()
linked_list.insert_at_end(1)
linked_list.insert_at_end(2)
linked_list.insert_at_end(3)
linked_list.insert_at_end(4)
linked_list.insert_at_end(5)
linked_list.traverse()
linked_list.reverse()
print ('\nReversed linked list')
linked_list.traverse()
if __name__ == '__main__':
main()
# Output:
# -------------
# 1
# 2
# 3
# 4
# 5
# Reversed linked list
# 5
# 4
# 3
# 2
# 1