From 6cb6c640b74656d9a9fbaba81777951871ffeffb Mon Sep 17 00:00:00 2001 From: krahets Date: Wed, 24 May 2023 00:44:26 +0800 Subject: [PATCH] build --- chapter_sorting/selection_sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter_sorting/selection_sort.md b/chapter_sorting/selection_sort.md index a075d1b8d..7a85faec9 100644 --- a/chapter_sorting/selection_sort.md +++ b/chapter_sorting/selection_sort.md @@ -156,6 +156,6 @@ comments: true - **空间复杂度 $O(1)$ 、原地排序**:指针 $i$ , $j$ 使用常数大小的额外空间。 - **非稳定排序**:在交换元素时,有可能将 `nums[i]` 交换至其相等元素的右边,导致两者的相对顺序发生改变。 -![选择排序非稳定示例](selection_sort.assets/selection_sort_step11.png) +![选择排序非稳定示例](selection_sort.assets/selection_sort_instability.png)

Fig. 选择排序非稳定示例