Polish the content

This commit is contained in:
krahets
2023-05-22 22:04:31 +08:00
parent e196962d0a
commit 5b406666d8
4 changed files with 5 additions and 5 deletions

View File

@@ -125,6 +125,6 @@ if __name__ == "__main__":
print("快速排序(中位基准数优化)完成后 nums =", nums1)
# 快速排序(尾递归优化)
nums2= [2, 4, 1, 0, 3, 5]
nums2 = [2, 4, 1, 0, 3, 5]
QuickSortTailCall().quick_sort(nums2, 0, len(nums2) - 1)
print("快速排序(尾递归优化)完成后 nums =", nums2)