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)