forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reverse_list_in_groups.py
55 lines (48 loc) · 1.47 KB
/
Reverse_list_in_groups.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
class Node:
def __init__(self, data):
self.data = data
self.next = None
class Reverse_Linked_List:
def __init__(self):
self.head = None
def Insert_At_End(self, new_data):
new_node = Node(new_data)
if self.head is None:
self.head = new_node
return
current = self.head
while current.next:
current = current.next
current.next = new_node
def Reverse_list_Groups(self, head, k):
count = 0
previous = None
current = head
while current is not None and count < k:
following = current.next
current.next = previous
previous = current
current = following
count += 1
if following is not None:
head.next = self.Reverse_list_Groups(following, k)
return previous
def Display(self):
temp = self.head
while temp:
print(temp.data, "->", end=" ")
temp = temp.next
print("None")
if __name__ == "__main__":
L_list = Reverse_Linked_List()
L_list.Insert_At_End(1)
L_list.Insert_At_End(2)
L_list.Insert_At_End(3)
L_list.Insert_At_End(4)
L_list.Insert_At_End(5)
L_list.Insert_At_End(6)
L_list.Insert_At_End(7)
L_list.Display()
L_list.head = L_list.Reverse_list_Groups(L_list.head, 2)
print("\nReverse Linked List: ")
L_list.Display()