数组支持任意位置插入修改

This commit is contained in:
lijialin 2018-11-30 14:46:54 +08:00
parent 9c788bde54
commit 05fb59166b

View File

@ -73,8 +73,7 @@ class MyArray:
# 插入位置大于当前的元素个数,可以插入最后的位置
if index >= self._count:
self._data.append(value)
else:
if index < 0:
elif index < 0:
# 位置小于 0 可以插入第 个位置
self._data.insert(0, value)
else: