From 33e15da7215b595db9b222608a97c7289d5b02c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E5=9C=86?= <374072213@qq.com> Date: Mon, 6 Feb 2023 19:58:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A0=86:=20=E9=A2=97=20->=20=E6=A3=B5=20(#341?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/chapter_heap/heap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_heap/heap.md b/docs/chapter_heap/heap.md index aa2ece56..b9707bbc 100644 --- a/docs/chapter_heap/heap.md +++ b/docs/chapter_heap/heap.md @@ -4,7 +4,7 @@ comments: true # 8.1. 堆 -「堆 Heap」是一颗限定条件下的「完全二叉树」。根据成立条件,堆主要分为两种类型: +「堆 Heap」是一棵限定条件下的「完全二叉树」。根据成立条件,堆主要分为两种类型: - 「大顶堆 Max Heap」,任意结点的值 $\geq$ 其子结点的值; - 「小顶堆 Min Heap」,任意结点的值 $\leq$ 其子结点的值;