-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex04_test.py
59 lines (49 loc) · 907 Bytes
/
ex04_test.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
from merge import *
from Node import Node
from SinglyList import SinglyList
newlist = SinglyList()
a = Node(1)
b = Node(3)
c = Node(5)
d = Node(7)
e = Node(9)
newlist.head = e
e.next = d
d.next = c
c.next = b
b.next = a
newlist2 = SinglyList()
f = Node(2)
g = Node(4)
h = Node(6)
i = Node(8)
j = Node(10)
newlist2.head = j
j.next = i
i.next = h
h.next = g
g.next = f
newnewlist = merge(newlist, newlist2)
for item in newnewlist:
print(item.c)
thirdlist = SinglyList()
first = Node(76)
second = Node(93)
third = Node(11)
fourth = Node(1019)
fifth = Node(530)
sixth = Node(777)
seventh = Node(0)
thirdlist.head = fourth
fourth.next = sixth
sixth.next = fifth
fifth.next = second
second.next = first
first.next = third
third.next = seventh
thirdlist2 = SinglyList()
one = Node(9999999)
thirdlist2.head = one
newthirdlist = merge(thirdlist, thirdlist2)
for item in newthirdlist:
print(item.c)