浏览代码

Fixing merge print.

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