Browse Source

Fixing merge print.

Jeann-Carlos 2 years ago
parent
commit
71829ca50b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py View File

58
 	t1 = time.process_time()					#tomamos el tiempo inicial
58
 	t1 = time.process_time()					#tomamos el tiempo inicial
59
 	mergeSort(mergelista,0,len(mergelista)-1) 	#ejecutamos el algoritmo mergeSort
59
 	mergeSort(mergelista,0,len(mergelista)-1) 	#ejecutamos el algoritmo mergeSort
60
 	acumulaMerge+=time.process_time() - t1		#acumulamos el tiempo de ejecucion
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
 	t1 = time.process_time()				#tomamos el tiempo inicial
63
 	t1 = time.process_time()				#tomamos el tiempo inicial
64
 	heapSort(heaplista)					    #ejecutamos el algoritmo heapSort
64
 	heapSort(heaplista)					    #ejecutamos el algoritmo heapSort