Adding the chapter of hello_algo and bug fixes (#1217)

* Add the chapter of hello_algo

* Remove the comment field from the landing page

* Update the link in the landing page

* Fix a typo

* Bug fiixes

* Fix the bug of underlined terms

* Fix the format of English terms

* Fix "静态数据结构" vs.  "动态数据结构" in classification_of_data_structure.md
This commit is contained in:
Yudong Jin
2024-04-03 21:05:16 +08:00
committed by GitHub
parent 043085d0ea
commit 5e2eef0b4d
5 changed files with 9 additions and 9 deletions

View File

@@ -41,7 +41,7 @@
- **基于数组可实现**:栈、队列、哈希表、树、堆、图、矩阵、张量(维度 $\geq 3$ 的数组)等。
- **基于链表可实现**:栈、队列、哈希表、树、堆、图等。
基于数组实现的数据结构也称“态数据结构”,这意味着此类数据结构在初始化后长度不可变。相对应地,基于链表实现的数据结构也称“态数据结构”,这类数据结构在初始化后,仍可以在程序运行过程中对其长度进行调整
链表在初始化后,仍可以在程序运行过程中对其长度进行调整,因此也称“态数据结构”。数组在初始化后长度不可变,因此也称“态数据结构”。值得注意的是,数组可通过重新分配内存实现长度变化,从而具备一定的“动态性”
!!! tip