From 631371e4473208a2b886d406b6f36691e083b546 Mon Sep 17 00:00:00 2001 From: huoyinghui Date: Wed, 15 Jan 2025 16:06:01 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E5=93=88=E5=B8=8C=E8=A1=A8=20?= =?UTF-8?q?=E5=BD=92=E7=B1=BB=E9=97=AE=E9=A2=98=EF=BC=8C=E5=AE=B9=E6=98=93?= =?UTF-8?q?=E9=80=A0=E6=88=90=E8=AF=AF=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../classification_of_data_structure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chapter_data_structure/classification_of_data_structure.md b/docs/chapter_data_structure/classification_of_data_structure.md index 4a74c2de0..122085ea3 100644 --- a/docs/chapter_data_structure/classification_of_data_structure.md +++ b/docs/chapter_data_structure/classification_of_data_structure.md @@ -9,11 +9,11 @@ 如下图所示,逻辑结构可分为“线性”和“非线性”两大类。线性结构比较直观,指数据在逻辑关系上呈线性排列;非线性结构则相反,呈非线性排列。 - **线性数据结构**:数组、链表、栈、队列、哈希表,元素之间是一对一的顺序关系。 -- **非线性数据结构**:树、堆、图、哈希表。 +- **非线性数据结构**:树、堆、图。 非线性数据结构可以进一步划分为树形结构和网状结构。 -- **树形结构**:树、堆、哈希表,元素之间是一对多的关系。 +- **树形结构**:树、堆,元素之间是一对多的关系。 - **网状结构**:图,元素之间是多对多的关系。 ![线性数据结构与非线性数据结构](classification_of_data_structure.assets/classification_logic_structure.png)