|
@@ -6,6 +6,7 @@ La variable largoLista define el largo de las listas a ordenar
|
6
|
6
|
La variable veces define las veces que se va a hacer el ordenamiento
|
7
|
7
|
Al final se imprimen los promedios de cada algortimo
|
8
|
8
|
"""
|
|
9
|
+
|
9
|
10
|
from random import randint
|
10
|
11
|
import time
|
11
|
12
|
|
|
@@ -16,6 +17,16 @@ def mergeSort(lista):
|
16
|
17
|
def heapSort(lista):
|
17
|
18
|
|
18
|
19
|
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+ for i in range(largoLista // 2, -1, -1):
|
|
23
|
+ heapify(lista, largoLista, i)
|
|
24
|
+
|
|
25
|
+ for i in range(largoLista - 1, 0, -1):
|
|
26
|
+ lista[i], lista[0] = lista[0], lista[i]
|
|
27
|
+
|
|
28
|
+ heapify(lista, i, 0)
|
|
29
|
+
|
19
|
30
|
return lista
|
20
|
31
|
|
21
|
32
|
def quickSort(lista):
|
|
@@ -26,6 +37,34 @@ def shellSort(lista):
|
26
|
37
|
|
27
|
38
|
return lista
|
28
|
39
|
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+def heapify(lista, largo, raiz):
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+ largest_value = raiz
|
|
47
|
+ left_child = raiz * 2 + 1
|
|
48
|
+ right_child = raiz * 2 + 2
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+ if left_child < largoLista and lista[left_child] > lista[raiz]:
|
|
53
|
+ largest_value = left_child
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+ if right_child < largoLista and lista[right_child] > lista[largest_value]:
|
|
58
|
+ largest_value = right_child
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+ if largest_value != raiz:
|
|
63
|
+ lista[raiz], lista[largest_value] = lista[largest_value], lista[raiz]
|
|
64
|
+ heapify(lista, largo, largest_value)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
29
|
68
|
maxValor=1000
|
30
|
69
|
largoLista=1000
|
31
|
70
|
veces=100
|
|
@@ -41,26 +80,26 @@ for i in range(veces):
|
41
|
80
|
quicklista=list(mergelista)
|
42
|
81
|
searchlista=list(mergelista)
|
43
|
82
|
|
44
|
|
- t1 = time.clock()
|
|
83
|
+ t1 = time.process_time()
|
45
|
84
|
mergeSort(mergelista)
|
46
|
|
- acumulaMerge+=time.clock()-t1
|
47
|
|
-
|
48
|
|
- t1 = time.clock()
|
|
85
|
+ acumulaMerge+=time.process_time()-t1
|
|
86
|
+
|
|
87
|
+ t1 = time.process_time()
|
49
|
88
|
heapSort(heaplista)
|
50
|
|
- acumulaHeap+=time.clock()-t1
|
51
|
|
-
|
52
|
|
- t1 = time.clock()
|
|
89
|
+ acumulaHeap+=time.process_time()-t1
|
|
90
|
+
|
|
91
|
+ t1 = time.process_time()
|
53
|
92
|
quickSort(quicklista)
|
54
|
|
- acumulaQuick+=time.clock()-t1
|
55
|
|
-
|
56
|
|
- t1 = time.clock()
|
|
93
|
+ acumulaQuick+=time.process_time()-t1
|
|
94
|
+
|
|
95
|
+ t1 = time.process_time()
|
57
|
96
|
shellSort(searchlista)
|
58
|
|
- acumulaShell+=time.clock()-t1
|
|
97
|
+ acumulaShell+=time.process_time()-t1
|
59
|
98
|
|
60
|
99
|
|
61
|
|
-print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
|
62
|
|
-print "MergeSort " + str(acumulaMerge/veces) + " segundos"
|
63
|
|
-print "HeapSort " + str(acumulaHeap/veces) + " segundos"
|
64
|
|
-print "QuickSort " + str(acumulaQuick/veces) + " segundos"
|
65
|
|
-print "ShellSort " + str(acumulaShell/veces) + " segundos"
|
|
100
|
+print ("Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista))
|
|
101
|
+print ("MergeSort " + str(acumulaMerge/veces) + " segundos")
|
|
102
|
+print ("HeapSort " + str(acumulaHeap/veces) + " segundos")
|
|
103
|
+print ("QuickSort " + str(acumulaQuick/veces) + " segundos")
|
|
104
|
+print ("ShellSort " + str(acumulaShell/veces) + " segundos")
|
66
|
105
|
|