-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedListProblemsStandford.py
316 lines (273 loc) · 7.28 KB
/
LinkedListProblemsStandford.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
class Node:
def __init__(self, data):
self.data = data
self.next = None
class linkedlist:
def addNode(self, head, data):
newNode = Node(data)
newNode.next = head
return newNode
def printlist(self, head):
if not head:
print "NULL LIST"
return
while head.next:
print head.data,"->",
head = head.next
print head.data
def count(self, head):
if not head:
return 0
count = 0
while head:
count += 0
head = head.next
return count
def getNth(self, head, n):
if not head:
return None
while head:
if n > 0:
head = head.next
n -= 1
else:
break
assert n == 0
return head.data
def deleteList(self, head):
if not head:
return None
while head:
next = head.next
del head
head = next
return head
def insertNth(self, head, n, value):
assert head != None
while head:
if n == 0:
break
else:
n-=1
head = head.next
if head is None:
assert n == 0
newNode = Node(head.data)
head.data = value
newNode.next = head.next
head.next = newNode
def sortedinsert(self, head , n):
ref = head
if not head:
return Node(n)
elif head.data >= n:
newNode = Node(n)
newNode.next = head
return newNode
else:
while head.next and head.next.data <= n:
head = head.next
newNode = Node(n)
newNode.next = head.next
head.next = newNode
return ref
def insersort(self, head):
res = Node(None)
while head:
res = self.sortedinsert(res, head.data)
head = head.next
return res.next
def append(self, a, b):
if not a:
return b
elif not b:
return a
while a.next:
a = a.next
a.next = b
b = None
return a,b
def frontbacksplit(self, head):
if not head:
return None,None
elif not head.next:
return head,None
a = head
fast = head
slow = head
while fast.next and fast.next.next:
fast = fast.next.next
slow = slow.next
b = slow.next
slow.next = None
return a,b
def removeDups(self, head):
if not head:
return
if not head.next:
return
while head.next:
if head.data == head.next.data:
head.next = head.next.next
head = head.next
def moveNode(self, s, d):
newNode = s
s = s.next
newNode.next = d
d = newNode
return s,d
def alternatingSplit(self, head):
a = None
b = None
while head:
a = self.addNode(a, head.data)
if head.next:
head = head.next
b = self.addNode(b, head.data)
head = head.next
return a,b
def shuffleMerge(self, a, b ):
res = None
if not b:
return a
elif not a:
return b
while True:
if a:
a,res = self.moveNode(a,res)
if b:
b,res = self.moveNode(b,res)
else:
break
return res
def sortedMerge(self, a, b):
if not a:
return b
elif not b:
return a
if a.data <= b.data:
res = a
res.next = self.sortedMerge(a.next,b)
else:
res = b
res.next = self.sortedMerge(a,b.next)
return res
def mergesort(self, head):
if not head:
return None
if not head.next:
return head
left,right = self.alternatingSplit(head)
l = self.mergesort(left)
r = self.mergesort(right)
return self.sortedMerge(l,r)
def reverse_iterative(self, head):
if not head:
return None
elif not head.next:
return head
prev = None
while head:
cur = head.next
head.next = prev
prev = head
head = cur
return prev
def reverse_recursive(self, head):
if not head:
return None
if not head.next:
return head
second = head.next
head.next = None
reversedNode = self.reverse_recursive(second)
second.next = head
return reversedNode
def reverse_k_nodes(self, head, k):
if not head:
return None
if k == 0:
return head
cur = head
prev = None
next = None
c = 0
while cur and c < k:
next = cur.next
cur.next = prev
prev = cur
cur = next
c+=1
if next:
head.next = self.reverse_k_nodes(next,k)
return prev
def delalternate(self, head):
if not head:
return None
if not head.next:
return head
ref = head
while head and head.next:
temp = head.next
head.next = head.next.next
del temp
head = head.next
return ref
def del_right_big(self, head):
if not head:
return None
if not head.next:
return head
cur = head
while cur and cur.next:
if cur.data < cur.next.data:
cur.data = cur.next.data
t = cur.next
cur.next = cur.next.next
del t
else:
cur = cur.next
return head
a_list = linkedlist()
head = Node(3)
head = a_list.addNode(head, 2)
head = a_list.addNode(head, 6)
head = a_list.addNode(head, 5)
head = a_list.addNode(head, 11)
head = a_list.addNode(head, 10)
head = a_list.addNode(head, 15)
# head = a_list.addNode(head, 12)
a_list.printlist(head)
# head = a_list.mergesort(head)
# a_list.printlist(head)
# head = a_list.reverse_recursive(head)
# head = a_list.reverse_k_nodes(head, 2)
#head = a_list.delalternate(head)
head = a_list.del_right_big(head)
a_list.printlist(head)
# head1 = Node(20)
# head1 = a_list.addNode(head1, 10)
# head1 = a_list.addNode(head1, 5)
# head2 = Node(111)
# # head2 = a_list.addNode(head2, 5)
# # head2 = a_list.addNode(head2, 22)
# # # head = a_list.addNode(head, 11)
# # # head = a_list.addNode(head, 43)
# # # head = a_list.addNode(head, 8)
# # # head = a_list.deleteList(head)
# # # a_list.printlist(head)
# # # a_list.insertNth(head,1,100)
# # # head = a_list.sortedinsert(head, 1)
# # # head = a_list.insersort(head)
# # a_list.printlist(head1)
# # a_list.printlist(head2)
# # head1,head2 = a_list.append(head1, head2)
# a_list.printlist(head1)
# a_list.printlist(head2)
# head1, head2 = a_list.moveNode(head1,head2)
# a_list.printlist(head1)
# a_list.printlist(head2)
# a,b = a_list.frontbacksplit(head)
# a_list.printlist(a)
# a_list.printlist(b)
# a_list.removeDups(head)