2 Commits

Author SHA1 Message Date
  Ricardo A. López Torres 5f2ebfa09f documentar cambios 3 years ago
  Ricardo A. López Torres b3614865b3 crear copias de la lista original 3 years ago
1 changed files with 10 additions and 4 deletions
  1. 10
    4
      sorting.py

+ 10
- 4
sorting.py View File

@@ -38,20 +38,26 @@ acumulaShell=0 	#variable para acumular el tiempo de ejecucion del shellsort
38 38
 for i in range(veces):
39 39
 	lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
40 40
 
41
+        # creamos copias de la lista para cada algoritmo
42
+        listaMerge = lista[:]
43
+        listaHeap = lista[:]
44
+        listaQuick = lista[:]
45
+        listaShell = lista[:]
46
+
41 47
 	t1 = time.clock() 				#seteamos el tiempo al empezar
42
-	mergeSort(lista) 				#ejecutamos el algoritmo mergeSort
48
+	mergeSort(listaMerge) 				#ejecutamos el algoritmo mergeSort
43 49
 	acumulaMerge+=time.clock()-t1 	#acumulamos el tiempo de ejecucion
44 50
 	
45 51
 	t1 = time.clock()				#seteamos el tiempo al empezar
46
-	heapSort(lista)					#ejecutamos el algoritmo heapSort
52
+	heapSort(listaHeap)					#ejecutamos el algoritmo heapSort
47 53
 	acumulaHeap+=time.clock()-t1 	#acumulamos el tiempo de ejecucion
48 54
 	
49 55
 	t1 = time.clock()				#seteamos el tiempo al empezar
50
-	quickSort(lista)				#ejecutamos el algoritmo quickSort
56
+	quickSort(listaQuick)				#ejecutamos el algoritmo quickSort
51 57
 	acumulaQuick+=time.clock()-t1 	#acumulamos el tiempo de ejecucion
52 58
 	
53 59
 	t1 = time.clock()				#seteamos el tiempo al empezar
54
-	shellSort(lista)				#ejecutamos el algoritmo shellSort
60
+	shellSort(listaShell)				#ejecutamos el algoritmo shellSort
55 61
 	acumulaShell+=time.clock()-t1 	#acumulamos el tiempo de ejecucion
56 62
 
57 63
 #imprimos los resultados