mirror of
https://github.com/krahets/hello-algo.git
synced 2025-12-16 03:59:18 +08:00
Remove the file headers from the docs.
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
---
|
||||
comments: true
|
||||
---
|
||||
|
||||
# 数组
|
||||
|
||||
「数组 Array」是一种将 **相同类型元素** 存储在 **连续内存空间** 的数据结构,将元素在数组中的位置称为元素的「索引 Index」。
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
---
|
||||
comments: true
|
||||
---
|
||||
|
||||
# 链表
|
||||
|
||||
!!! note "引言"
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
---
|
||||
comments: true
|
||||
---
|
||||
|
||||
# 列表
|
||||
|
||||
**由于长度不可变,数组的实用性大大降低**。在很多情况下,我们事先并不知道会输入多少数据,这就为数组长度的选择带来了很大困难。长度选小了,需要在添加数据中频繁地扩容数组;长度选大了,又造成内存空间的浪费。
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
---
|
||||
comments: true
|
||||
---
|
||||
|
||||
# 小结
|
||||
|
||||
- 数组和链表是两种基本数据结构,代表了数据在计算机内存中的两种存储方式,即连续空间存储和离散空间存储。两者的优点与缺点呈现出此消彼长的关系。
|
||||
|
||||
Reference in New Issue
Block a user