Skip to content

Commit a76cfa3

Browse files
committed
数组和链表
1 parent 3141c3e commit a76cfa3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

2_数组和列表/array_and_list.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Python 的 array 是内存连续、存储的都是同一数据类型的结构,
2424

2525
操作 | 平均时间复杂度 |
2626
--------------------------------------|----------------|
27+
list[index]| O(1) |
2728
list.append | O(1) |
2829
list.insert | O(n) |
2930
list.pop(index), default last element | O(1) |

0 commit comments

Comments
 (0)