-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortedInsert.py
212 lines (139 loc) · 4.13 KB
/
sortedInsert.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
"""
Given a reference to the head of a doubly-linked list and an integer, , create a new DoublyLinkedListNode object having data value
and insert it into a sorted linked list while maintaining the sort.
Function Description
Complete the sortedInsert function in the editor below. It must return a reference to the head of your modified DoublyLinkedList.
sortedInsert has two parameters:
head: A reference to the head of a doubly-linked list of DoublyLinkedListNode objects.
data: An integer denoting the value of the
field for the DoublyLinkedListNode you must insert into the list.
Note: Recall that an empty list (i.e., where
) and a list with one element are sorted lists.
Input Format
The first line contains an integer
, the number of test cases.
Each of the test case is in the following format:
The first line contains an integer
, the number of elements in the linked list.
Each of the next
lines contains an integer, the data for each node of the linked list.
The last line contains an integer
which needs to be inserted into the sorted doubly-linked list.
Constraints
Output Format
Do not print anything to stdout. Your method must return a reference to the
of the same list that was passed to it as a parameter.
The ouput is handled by the code in the editor and is as follows:
For each test case, print the elements of the sorted doubly-linked list separated by spaces on a new line.
Sample Input
1
4
1
3
4
10
5
Sample Output
1 3 4 5 10
Explanation
The initial doubly linked list is:
.
The doubly linked list after insertion is:
"""
#!/bin/python3
import math
import os
import random
import re
import sys
class DoublyLinkedListNode:
def __init__(self, node_data):
self.data = node_data
self.next = None
self.prev = None
class DoublyLinkedList:
def __init__(self):
self.head = None
self.tail = None
def insert_node(self, node_data):
node = DoublyLinkedListNode(node_data)
if not self.head:
self.head = node
else:
self.tail.next = node
node.prev = self.tail
self.tail = node
def print_doubly_linked_list(node, sep, fptr):
while node:
fptr.write(str(node.data))
node = node.next
if node:
fptr.write(sep)
# Complete the sortedInsert function below.
#
# For your reference:
#
# DoublyLinkedListNode:
# int data
# DoublyLinkedListNode next
# DoublyLinkedListNode prev
#
#
def sortedInsert(head, data):
temp = DoublyLinkedListNode(data)
if head == None:
head = temp
return head
if temp.data < head.data:
temp.next = head
head.prev = temp
head = temp
return head
curr = head
while curr.next != None:
if temp.data < curr.data:
curr.prev.next = temp
temp.prev = curr.prev
temp.next = curr
curr.prev = temp
curr = temp
return head
curr = curr.next
if temp.data < curr.data:
curr.prev.next = temp
temp.prev = curr.prev
temp.next = curr
curr.prev = temp
curr = temp
return head
curr.next = temp
temp.prev = curr
return head
if __name__ == '__main__':
# fptr = open(os.environ['OUTPUT_PATH'], 'w')
# t = int(input())
# for t_itr in range(t):
# llist_count = int(input())
# llist = DoublyLinkedList()
# for _ in range(llist_count):
# llist_item = int(input())
# llist.insert_node(llist_item)
# data = int(input())
# llist1 = sortedInsert(llist.head, data)
# print_doubly_linked_list(llist1, ' ', fptr)
# fptr.write('\n')
# fptr.close()
t = 1
n = [4]
for t_itr in range(t):
llist_count = n[t_itr]
llist = DoublyLinkedList()
array = [1, 3, 4, 10]
for _ in range(llist_count):
llist_item = array[_]
llist.insert_node(llist_item)
data = 5
llist1 = sortedInsert(llist.head, data)
while llist1:
print(llist1.data)
llist1 = llist1.next