This commit is contained in:
krahets
2023-02-26 20:16:31 +08:00
parent b389c65072
commit 625d5f2a34
10 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
comments: true
---
# 4.1.   数组
# 4.1.   数组Array
「数组 Array」是一种将 **相同类型元素** 存储在 **连续内存空间** 的数据结构,将元素在数组中的位置称为元素的「索引 Index」。
+1 -1
View File
@@ -2,7 +2,7 @@
comments: true
---
# 4.2.   链表
# 4.2.   链表Linked List
!!! note "引言"
+1 -1
View File
@@ -2,7 +2,7 @@
comments: true
---
# 4.3.   列表
# 4.3.   列表List
**由于长度不可变,数组的实用性大大降低**。在很多情况下,我们事先并不知道会输入多少数据,这就为数组长度的选择带来了很大困难。长度选小了,需要在添加数据中频繁地扩容数组;长度选大了,又造成内存空间的浪费。