From 4be25e52733cdcc38ba715d5f7cf5e01a4b8eb8c Mon Sep 17 00:00:00 2001 From: timi <63904151+Boy-timi@users.noreply.github.com> Date: Sat, 26 Nov 2022 01:01:34 +0800 Subject: [PATCH] Update quick_sort.py --- codes/python/chapter_sorting/quick_sort.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codes/python/chapter_sorting/quick_sort.py b/codes/python/chapter_sorting/quick_sort.py index dec5726bc..ae932b604 100644 --- a/codes/python/chapter_sorting/quick_sort.py +++ b/codes/python/chapter_sorting/quick_sort.py @@ -12,6 +12,7 @@ sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__)))) """ 快速排序类 """ class QuickSort(object): + """ 哨兵划分 """ def partition(self, nums, left, right): # 以 nums[left] 作为基准数