|
@@ -10,8 +10,24 @@ from random import randint
|
10
|
10
|
import time
|
11
|
11
|
|
12
|
12
|
def mergeSort(lista):
|
13
|
|
-
|
14
|
|
- return lista
|
|
13
|
+ if (len(lista) == 1):
|
|
14
|
+ return lista
|
|
15
|
+
|
|
16
|
+ n = len(lista)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+ firstHalf = lista[0:n//2]
|
|
20
|
+ secondHalf = lista[n//2:n]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+ firstHalf = mergeSort(firstHalf)
|
|
24
|
+ secondHalf = mergeSort(secondHalf)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+ lista = merge(firstHalf,secondHalf)
|
|
28
|
+
|
|
29
|
+ return lista
|
|
30
|
+
|
15
|
31
|
|
16
|
32
|
def heapSort(lista):
|
17
|
33
|
|
|
@@ -25,6 +41,33 @@ def shellSort(lista):
|
25
|
41
|
|
26
|
42
|
return lista
|
27
|
43
|
|
|
44
|
+def merge(firstHalf, secondHalf):
|
|
45
|
+ mergeList = []
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+ while (len(firstHalf) != 0) and (len(secondHalf) != 0):
|
|
49
|
+
|
|
50
|
+ if firstHalf[0] > secondHalf[0]:
|
|
51
|
+ n = secondHalf.pop(0)
|
|
52
|
+ mergeList.append(n)
|
|
53
|
+ else:
|
|
54
|
+ n = firstHalf.pop(0)
|
|
55
|
+ mergeList.append(n)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+ while len(firstHalf) != 0:
|
|
59
|
+ mergeList.append(firstHalf[0])
|
|
60
|
+ firstHalf.pop(0)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+ while len(secondHalf) != 0:
|
|
64
|
+ mergeList.append(secondHalf[0])
|
|
65
|
+ secondHalf.pop(0)
|
|
66
|
+
|
|
67
|
+ return mergeList
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
28
|
71
|
maxValor=1000
|
29
|
72
|
largoLista=1000
|
30
|
73
|
veces=100
|
|
@@ -40,25 +83,29 @@ for i in range(veces):
|
40
|
83
|
quicklista=list(mergelista)
|
41
|
84
|
searchlista=list(mergelista)
|
42
|
85
|
|
43
|
|
- t1 = time.clock()
|
|
86
|
+ t1 = time.time()
|
44
|
87
|
mergeSort(mergelista)
|
45
|
88
|
acumulaMerge+=time.clock()-t1
|
46
|
89
|
|
47
|
|
- t1 = time.clock()
|
48
|
|
- heapSort(heaplista)
|
49
|
|
- acumulaHeap+=time.clock()-t1
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
50
|
93
|
|
51
|
|
- t1 = time.clock()
|
52
|
|
- quickSort(quicklista)
|
53
|
|
- acumulaQuick+=time.clock()-t1
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
54
|
97
|
|
55
|
|
- t1 = time.clock()
|
56
|
|
- shellSort(searchlista)
|
57
|
|
- acumulaShell+=time.clock()-t1
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
58
|
101
|
|
59
|
102
|
|
60
|
|
-print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
|
61
|
|
-print "MergeSort " + str(acumulaMerge/veces) + " segundos"
|
62
|
|
-print "HeapSort " + str(acumulaHeap/veces) + " segundos"
|
63
|
|
-print "QuickSort " + str(acumulaQuick/veces) + " segundos"
|
64
|
|
-print "ShellSort " + str(acumulaShell/veces) + " segundos"
|
|
103
|
+print("Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista))
|
|
104
|
+print("MergeSort " + str(acumulaMerge/veces) + " segundos")
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|