Remove the heading numbers

in all the source docs.
This commit is contained in:
krahets
2023-02-16 03:39:01 +08:00
parent 15417d2a95
commit 88b00151b0
46 changed files with 257 additions and 172 deletions

View File

@@ -2,11 +2,11 @@
comments: true
---
# 3.2. 数据结构分类
# 数据结构分类
数据结构主要可根据「逻辑结构」和「物理结构」两种角度进行分类。
## 3.2.1. 逻辑结构:线性与非线性
## 逻辑结构:线性与非线性
**「逻辑结构」反映了数据之间的逻辑关系**。数组和链表的数据按照顺序依次排列,反映了数据间的线性关系;树从顶至底按层级排列,反映了祖先与后代之间的派生关系;图由结点和边组成,反映了复杂网络关系。
@@ -19,7 +19,7 @@ comments: true
<p align="center"> Fig. 线性与非线性数据结构 </p>
## 3.2.2. 物理结构:连续与离散
## 物理结构:连续与离散
!!! note