-
Notifications
You must be signed in to change notification settings - Fork 40
/
reverse_linked_list.py
155 lines (130 loc) · 3.73 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/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
#
# Another simple way of reversing linked list is to process each node and keep
# on inserting at another head, explained here: https://leetcode.com/problems/reverse-nodes-in-k-group/solution/
#
# 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, end=' ')
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 reverse_list_using_insert_at_head(self, head, k):
"""
This is simple way of reversing linked list - process each node and keep
on inserting at another head.
Explained here(premium): https://leetcode.com/problems/reverse-nodes-in-k-group/solution/
"""
# Reverse k nodes of the given linked list.
# This function assumes that the list contains
# atleast k nodes.
new_head = None
ptr = head
while k:
next_node = ptr.next
# Insert the node pointed to by "ptr"
# at the beginning of the reversed list
ptr.next = new_head
new_head = ptr
ptr = next_node
k -= 1
return new_head
def reverse_recursive(self):
def _reverse(prev, curr):
if curr is None:
return prev
newHead = _reverse(curr, curr.next)
curr.next = prev
return newHead
return _reverse(None, self.head)
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)
print('\nOriginal list: ', end=' ')
linked_list.traverse()
linked_list.reverse()
print('\nReversed linked list: ', end=' ')
linked_list.traverse()
print()
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)
print('\nOriginal list: ', end=' ')
linked_list.traverse()
rev_head = linked_list.reverse_list_using_insert_at_head(linked_list.head, 5)
print('\nReversing by insert at head: ', end=' ')
linked_list.head = rev_head
linked_list.traverse()
print()
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)
print('\nOriginal list: ', end=' ')
linked_list.traverse()
rev_head = linked_list.reverse_recursive()
print('\nReversing using recursion: ', end=' ')
linked_list.head = rev_head
linked_list.traverse()
print()
if __name__ == '__main__':
main()
# Output:
# -------------
# Original list: 1 2 3 4 5
# Reversed linked list: 5 4 3 2 1
#
# Original list: 1 2 3 4 5
# Reversing by insert at head: 5 4 3 2 1
#
# Original list: 1 2 3 4 5
# Reversing using recursion: 5 4 3 2 1