소스 검색

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]