|
@@ -15,7 +15,8 @@ def mergeSort(lista):
|
15
|
15
|
# If the size of the list is greater than 1 then it enters here
|
16
|
16
|
if len(lista) > 1:
|
17
|
17
|
# Gets the half of the list
|
18
|
|
- Midd = len(lista) / 2
|
|
18
|
+ Midd = len(lista) // 2
|
|
19
|
+
|
19
|
20
|
# Takes only the elements that are in the left of the list
|
20
|
21
|
Left = lista[Midd:]
|
21
|
22
|
# If the size of left still is not 1 then
|
|
@@ -30,35 +31,35 @@ def mergeSort(lista):
|
30
|
31
|
mergeSort(Right)
|
31
|
32
|
|
32
|
33
|
# Variables define for while and getting space in the list
|
33
|
|
- i = j = k = 0
|
|
34
|
+ i = j = k = 0
|
34
|
35
|
|
35
|
36
|
# While i and j are less than the comparation it enters here
|
36
|
|
- while i < len(Left) and j < len(Right):
|
|
37
|
+ while i < len(Left) and j < len(Right):
|
37
|
38
|
# If the compared number in i is less than j it enters here
|
38
|
|
- if Left[i] < Right[j]:
|
|
39
|
+ if Left[i] < Right[j]:
|
39
|
40
|
# The less variable is stored in the list again in order
|
40
|
|
- lista[k] = Left[i]
|
41
|
|
- i += 1 # Increments i
|
|
41
|
+ lista[k] = Left[i]
|
|
42
|
+ i += 1 # Increments i
|
42
|
43
|
# If the compared number in i is greater than j it enters here
|
43
|
|
- else:
|
|
44
|
+ else:
|
44
|
45
|
# The less variable is stored in the list again in order
|
45
|
|
- lista[k] = Right[j]
|
46
|
|
- j += 1 # Increments j
|
47
|
|
- k += 1 # Increments k
|
|
46
|
+ lista[k] = Right[j]
|
|
47
|
+ j += 1 # Increments j
|
|
48
|
+ k += 1 # Increments k
|
48
|
49
|
|
49
|
50
|
# If there are elements remaining in Left the they are put here
|
50
|
|
- while i < len(Left):
|
|
51
|
+ while i < len(Left):
|
51
|
52
|
# The variable that was remaining is put here
|
52
|
|
- lista[k] = Left[i]
|
53
|
|
- i += 1 # Increments i
|
54
|
|
- k += 1 # Increments k
|
|
53
|
+ lista[k] = Left[i]
|
|
54
|
+ i += 1 # Increments i
|
|
55
|
+ k += 1 # Increments k
|
55
|
56
|
|
56
|
57
|
# If there are elements remaining in Right the they are put here
|
57
|
|
- while j < len(Right):
|
|
58
|
+ while j < len(Right):
|
58
|
59
|
# The variable that was remaining is put here
|
59
|
|
- lista[k] = Right[j]
|
60
|
|
- j += 1 # Increments j
|
61
|
|
- k += 1 # Increments k
|
|
60
|
+ lista[k] = Right[j]
|
|
61
|
+ j += 1 # Increments j
|
|
62
|
+ k += 1 # Increments k
|
62
|
63
|
|
63
|
64
|
return lista
|
64
|
65
|
# Code was base and taken from GeeksforGeeks
|
|
@@ -68,13 +69,15 @@ def heapSort(lista):
|
68
|
69
|
return lista
|
69
|
70
|
|
70
|
71
|
def quickSort(lista):
|
71
|
|
- # Se aplica quicksort a la lista desde el primer elemento hasta el último
|
72
|
|
- return qsortUtils.qSort(lista, 0, len(lista) - 1)
|
|
72
|
+ # Se aplica quicksort a la lista desde el primer elemento hasta el último
|
|
73
|
+ qsortUtils.qSort(lista, 0, len(lista) - 1)
|
|
74
|
+
|
|
75
|
+ return lista
|
73
|
76
|
|
74
|
77
|
def shellSort(lista):
|
75
|
78
|
#definan el algoritmo de ordenamiento shellsort
|
76
|
79
|
Size = len(lista) # Contains the complete size of the list
|
77
|
|
- Diff = Size/2 # Contains the number of half of the list
|
|
80
|
+ Diff = Size//2 # Contains the number of half of the list
|
78
|
81
|
|
79
|
82
|
# Does a insertion sort by ordering in base of the Diff.
|
80
|
83
|
while Diff > 0:
|
|
@@ -92,47 +95,51 @@ def shellSort(lista):
|
92
|
95
|
# Puts the Tmp variable in is correct location
|
93
|
96
|
lista[j] = Tmp
|
94
|
97
|
# Reduces again the list
|
95
|
|
- Diff /= 2
|
|
98
|
+ Diff //= 2
|
96
|
99
|
|
97
|
100
|
return lista
|
98
|
101
|
# Code was taken from GeeksforGeeks
|
99
|
102
|
|
100
|
|
-maxValor=1000 #define el valor maximo de los elementos de la lista
|
101
|
|
-largoLista=1000 #define el largo de las listas a ordenar
|
102
|
|
-veces=100 #define las veces que se va a hacer el ordenamiento
|
103
|
|
-
|
104
|
|
-acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
|
105
|
|
-acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
|
106
|
|
-acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
|
107
|
|
-
|
108
|
|
-
|
109
|
|
-acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
|
110
|
|
-
|
111
|
|
-for i in range(veces):
|
112
|
|
- mergelista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
|
113
|
|
- heaplista=list(mergelista)
|
114
|
|
- quicklista=list(mergelista)
|
115
|
|
- searchlista=list(mergelista)
|
116
|
|
-
|
117
|
|
- t1 = time.perf_counter() #seteamos el tiempo al empezar
|
118
|
|
- mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
|
119
|
|
- acumulaMerge+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
120
|
|
-
|
121
|
|
- t1 = time.perf_counter() #seteamos el tiempo al empezar
|
122
|
|
- heapSort(heaplista) #ejecutamos el algoritmo heapSort
|
123
|
|
- acumulaHeap+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
124
|
|
-
|
125
|
|
- t1 = time.perf_counter() #seteamos el tiempo al empezar
|
126
|
|
- quickSort(quicklista) #ejecutamos el algoritmo quickSort
|
127
|
|
- acumulaQuick+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
128
|
|
-
|
129
|
|
- t1 = time.perf_counter() #seteamos el tiempo al empezar
|
130
|
|
- shellSort(searchlista) #ejecutamos el algoritmo shellSort
|
131
|
|
- acumulaShell+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
132
|
|
-
|
133
|
|
-#imprimos los resultados
|
134
|
|
-print (f"Promedio de tiempo de ejecucion de {veces} listas de largo {largoLista}")
|
135
|
|
-print (f"MergeSort {str(acumulaMerge/veces)} segundos")
|
136
|
|
-print (f"HeapSort {str(acumulaHeap/veces)} segundos")
|
137
|
|
-print (f"QuickSort {str(acumulaQuick/veces)} segundos")
|
138
|
|
-print (f"ShellSort {str(acumulaShell/veces) }segundos")
|
|
103
|
+def main():
|
|
104
|
+ maxValor=1000 #define el valor maximo de los elementos de la lista
|
|
105
|
+ largoLista=1000 #define el largo de las listas a ordenar
|
|
106
|
+ veces=100 #define las veces que se va a hacer el ordenamiento
|
|
107
|
+
|
|
108
|
+ acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
|
|
109
|
+ acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
|
|
110
|
+ acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+ acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
|
|
114
|
+
|
|
115
|
+ for i in range(veces):
|
|
116
|
+ mergelista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
|
|
117
|
+ heaplista=list(mergelista)
|
|
118
|
+ quicklista=list(mergelista)
|
|
119
|
+ searchlista=list(mergelista)
|
|
120
|
+
|
|
121
|
+ t1 = time.perf_counter() #seteamos el tiempo al empezar
|
|
122
|
+ mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
|
|
123
|
+ acumulaMerge+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
|
124
|
+
|
|
125
|
+ t1 = time.perf_counter() #seteamos el tiempo al empezar
|
|
126
|
+ heapSort(heaplista) #ejecutamos el algoritmo heapSort
|
|
127
|
+ acumulaHeap+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
|
128
|
+
|
|
129
|
+ t1 = time.perf_counter() #seteamos el tiempo al empezar
|
|
130
|
+ quickSort(quicklista) #ejecutamos el algoritmo quickSort
|
|
131
|
+ acumulaQuick+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
|
132
|
+
|
|
133
|
+ t1 = time.perf_counter() #seteamos el tiempo al empezar
|
|
134
|
+ shellSort(searchlista) #ejecutamos el algoritmo shellSort
|
|
135
|
+ acumulaShell+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
|
|
136
|
+
|
|
137
|
+ #imprimos los resultados
|
|
138
|
+ print (f"Promedio de tiempo de ejecucion de {veces} listas de largo {largoLista}")
|
|
139
|
+ print (f"MergeSort {str(acumulaMerge/veces)} segundos")
|
|
140
|
+ print (f"HeapSort {str(acumulaHeap/veces)} segundos")
|
|
141
|
+ print (f"QuickSort {str(acumulaQuick/veces)} segundos")
|
|
142
|
+ print (f"ShellSort {str(acumulaShell/veces) }segundos")
|
|
143
|
+
|
|
144
|
+if __name__ == "__main__":
|
|
145
|
+ main()
|