소스 검색

added parameters to quickSort call

Jasiel Rivera 2 년 전
부모
커밋
b984f3073f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py 파일 보기

164
 	acumulaHeap+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
164
 	acumulaHeap+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
165
 
165
 
166
 	t1 = time.process_time() 				#seteamos el tiempo al empezar
166
 	t1 = time.process_time() 				#seteamos el tiempo al empezar
167
-	quickSort(quicklista)				#ejecutamos el algoritmo quickSort
167
+	quickSort(quicklista,0 , len(quicklista)-1)				#ejecutamos el algoritmo quickSort
168
 	acumulaQuick+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
168
 	acumulaQuick+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
169
 
169
 
170
 	t1 = time.process_time()				#seteamos el tiempo al empezar
170
 	t1 = time.process_time()				#seteamos el tiempo al empezar