|
@@ -11,9 +11,60 @@ from random import randint
|
11
|
11
|
import time
|
12
|
12
|
|
13
|
13
|
def mergeSort(lista):
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+ if len(lista) > 1:
|
|
20
|
+
|
|
21
|
+ middle = len(lista)//2
|
|
22
|
+
|
|
23
|
+ Left = mergeSort(lista[:middle])
|
|
24
|
+
|
|
25
|
+ Right = mergeSort(lista[middle:])
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+ return merge(Right, Left, lista)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+ return lista
|
|
32
|
+
|
|
33
|
+def merge(Right, Left, lista):
|
|
34
|
+
|
|
35
|
+ i = 0
|
|
36
|
+ j = 0
|
|
37
|
+ k = 0
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+ while i < len(Left) and j < len(Right):
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+ if Left[i] < Right[j]:
|
|
44
|
+ lista[k] = Left[i]
|
|
45
|
+ i += 1
|
|
46
|
+ k += 1
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+ else:
|
|
50
|
+ lista[k] = Right[j]
|
|
51
|
+ j += 1
|
|
52
|
+ k += 1
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+ while i < len(Left):
|
|
56
|
+ lista[k] = Left[i]
|
|
57
|
+ i += 1
|
|
58
|
+ k += 1
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+ while j < len(Right):
|
|
62
|
+ lista[k] = Right[j]
|
|
63
|
+ j += 1
|
|
64
|
+ k += 1
|
|
65
|
+
|
14
|
66
|
return lista
|
15
|
67
|
|
16
|
|
-
|
17
|
68
|
def heapSort(lista):
|
18
|
69
|
|
19
|
70
|
|
|
@@ -37,8 +88,6 @@ def shellSort(lista):
|
37
|
88
|
|
38
|
89
|
return lista
|
39
|
90
|
|
40
|
|
-
|
41
|
|
-
|
42
|
91
|
def heapify(lista, largo, raiz):
|
43
|
92
|
|
44
|
93
|
|
|
@@ -63,7 +112,6 @@ def heapify(lista, largo, raiz):
|
63
|
112
|
lista[raiz], lista[largest_value] = lista[largest_value], lista[raiz]
|
64
|
113
|
heapify(lista, largo, largest_value)
|
65
|
114
|
|
66
|
|
-
|
67
|
115
|
|
68
|
116
|
maxValor=1000
|
69
|
117
|
largoLista=1000
|