瀏覽代碼

Added merge algorithm

AngelRomero5 2 年之前
父節點
當前提交
955a91ca74
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py 查看文件

@@ -80,7 +80,7 @@ for i in range(veces):
80 80
 	quicklista = deepcopy(mergelista)
81 81
 	searchlista = deepcopy(mergelista)
82 82
 
83
-	with recursion_depth(1500): # This function excedes python's recursion limit
83
+	with recursion_depth(1100): # This function excedes python's recursion limit
84 84
 		acumulaMerge += timeCode(lambda: mergeSort(mergelista))[0]
85 85
 
86 86
 	acumulaHeap += timeCode(lambda: heapSort(heaplista))[0]