ソースを参照

Updated sorting.py with individual list for each algorithm.

Ernesto Ortiz 3 年 前
コミット
141ed70d8f
共有1 個のファイルを変更した9 個の追加4 個の削除を含む
  1. 9
    4
      sorting.py

+ 9
- 4
sorting.py ファイルの表示

@@ -78,20 +78,25 @@ acumulaShell=0 	#variable para acumular el tiempo de ejecucion del shellsort
78 78
 for i in range(veces):
79 79
 	lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
80 80
 
81
+	listaMerge = lista[:]
82
+    listaHeap = lista[:]
83
+    listaQuick = lista[:]
84
+    listaShell = lista[:]
85
+	
81 86
 	t1 = time.process_time()				#seteamos el tiempo al empezar
82
-	mergeSort(lista) 						#ejecutamos el algoritmo mergeSort
87
+	mergeSort(listaMerge) 						#ejecutamos el algoritmo mergeSort
83 88
 	acumulaMerge+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
84 89
 	
85 90
 	t1 = time.process_time()				#seteamos el tiempo al empezar
86
-	heapSort(lista)							#ejecutamos el algoritmo heapSort
91
+	heapSort(listaHeap)							#ejecutamos el algoritmo heapSort
87 92
 	acumulaHeap+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
88 93
 	
89 94
 	t1 = time.process_time()						#seteamos el tiempo al empezar
90
-	quickSort(lista)						#ejecutamos el algoritmo quickSort
95
+	quickSort(listaQuick)						#ejecutamos el algoritmo quickSort
91 96
 	acumulaQuick+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
92 97
 	
93 98
 	t1 = time.process_time()				#seteamos el tiempo al empezar
94
-	shellSort(lista)						#ejecutamos el algoritmo shellSort
99
+	shellSort(listaShell)						#ejecutamos el algoritmo shellSort
95 100
 	acumulaShell+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
96 101
 
97 102
 #imprimos los resultados