Jeann-Carlos преди 2 години
родител
ревизия
71829ca50b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py Целия файл

@@ -58,7 +58,7 @@ for i in range(veces):
58 58
 	t1 = time.process_time()					#tomamos el tiempo inicial
59 59
 	mergeSort(mergelista,0,len(mergelista)-1) 	#ejecutamos el algoritmo mergeSort
60 60
 	acumulaMerge+=time.process_time() - t1		#acumulamos el tiempo de ejecucion
61
-	print(acumulaMerge)							#desplegamos la lista
61
+	print(mergelista)							#desplegamos la lista
62 62
 
63 63
 	t1 = time.process_time()				#tomamos el tiempo inicial
64 64
 	heapSort(heaplista)					    #ejecutamos el algoritmo heapSort