From 98daefa67ada52bd6b01e81d69c1d16f0b56e4ad Mon Sep 17 00:00:00 2001 From: llql1211 <1390116067@qq.com> Date: Tue, 21 Jan 2025 18:51:12 +0800 Subject: [PATCH] Update heap_sort.md (#1626) --- docs/chapter_sorting/heap_sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_sorting/heap_sort.md b/docs/chapter_sorting/heap_sort.md index 9ed049919..9e31db886 100644 --- a/docs/chapter_sorting/heap_sort.md +++ b/docs/chapter_sorting/heap_sort.md @@ -2,7 +2,7 @@ !!! tip - 阅读本节前,请确保已学完“堆“章节。 + 阅读本节前,请确保已学完“堆”章节。 堆排序(heap sort)是一种基于堆数据结构实现的高效排序算法。我们可以利用已经学过的“建堆操作”和“元素出堆操作”实现堆排序。