소스 검색

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