浏览代码

added parameters to quickSort call

Jasiel Rivera 2 年前
父节点
当前提交
b984f3073f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py 查看文件

@@ -164,7 +164,7 @@ for i in range(veces):
164 164
 	acumulaHeap+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
165 165
 
166 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 168
 	acumulaQuick+=time.process_time()-t1 	#acumulamos el tiempo de ejecucion
169 169
 
170 170
 	t1 = time.process_time()				#seteamos el tiempo al empezar