Add an imortant tip.
This commit is contained in:
parent
731e98fc25
commit
0c24343ad7
@ -17,6 +17,8 @@ def randomAccess(nums):
|
|||||||
return random_num
|
return random_num
|
||||||
|
|
||||||
""" 扩展数组长度 """
|
""" 扩展数组长度 """
|
||||||
|
# 请注意,Python 的 list 是动态数组,可以直接扩展
|
||||||
|
# 为了方便学习,本函数将 list 看作是长度不可变的数组
|
||||||
def extend(nums, enlarge):
|
def extend(nums, enlarge):
|
||||||
# 初始化一个扩展长度后的数组
|
# 初始化一个扩展长度后的数组
|
||||||
res = [0] * (len(nums) + enlarge)
|
res = [0] * (len(nums) + enlarge)
|
||||||
|
@ -134,6 +134,8 @@ elementAddr = firtstElementAddr + elementLength * elementIndex
|
|||||||
|
|
||||||
```python title="array.py"
|
```python title="array.py"
|
||||||
""" 扩展数组长度 """
|
""" 扩展数组长度 """
|
||||||
|
# 请注意,Python 的 list 是动态数组,可以直接扩展
|
||||||
|
# 为了方便学习,本函数将 list 看作是长度不可变的数组
|
||||||
def extend(nums, enlarge):
|
def extend(nums, enlarge):
|
||||||
# 初始化一个扩展长度后的数组
|
# 初始化一个扩展长度后的数组
|
||||||
res = [0] * (len(nums) + enlarge)
|
res = [0] * (len(nums) + enlarge)
|
||||||
|
Loading…
Reference in New Issue
Block a user