@ -24,7 +24,8 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 初始化列表 */
vector< int > list = { 1, 3, 2, 5, 4 };
```
```
=== "Python"
=== "Python"
@ -49,7 +50,11 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 访问元素 */
int num = list[1]; // 访问索引 1 处的元素
/* 更新元素 */
list[1] = 0; // 将索引 1 处的元素更新为 0
```
```
=== "Python"
=== "Python"
@ -87,7 +92,21 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 清空列表 */
list.clear();
/* 尾部添加元素 */
list.push_back(1);
list.push_back(3);
list.push_back(2);
list.push_back(5);
list.push_back(4);
/* 中间插入元素 */
list.insert(list.begin() + 3, 6); // 在索引 3 处插入数字 6
/* 删除元素 */
list.erase(list.begin() + 3); // 删除索引 3 处的元素
```
```
=== "Python"
=== "Python"
@ -131,7 +150,17 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 通过索引遍历列表 */
int count = 0;
for (int i = 0; i < list.size ( ) ; i + + ) {
count++;
}
/* 直接遍历列表元素 */
count = 0;
for (int n : list) {
count++;
}
```
```
=== "Python"
=== "Python"
@ -161,7 +190,10 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 拼接两个列表 */
vector< int > list1 = { 6, 8, 7, 10, 9 };
// 将列表 list1 拼接到 list 之后
list.insert(list.end(), list1.begin(), list1.end());
```
```
=== "Python"
=== "Python"
@ -184,7 +216,8 @@ comments: true
=== "C++"
=== "C++"
```cpp title="list.cpp"
```cpp title="list.cpp"
/* 排序列表 */
sort(list.begin(), list.end()); // 排序后,列表元素从小到大排列
```
```
=== "Python"
=== "Python"
@ -209,14 +242,14 @@ comments: true
```java title="my_list.java"
```java title="my_list.java"
/* 列表类简易实现 */
/* 列表类简易实现 */
class MyList {
class MyList {
int[] nums; // 数组(存储列表元素)
private int[] nums; // 数组(存储列表元素)
int initialCapacity = 10; // 列表初始 容量
private int capacity = 10; // 列表 容量
int size = 0; // 列表长度(即当前元素数量)
private int size = 0; // 列表长度(即当前元素数量)
int extendRatio = 2; // 每次列表扩容的倍数
private int extendRatio = 2; // 每次列表扩容的倍数
/* 构造函数 */
/* 构造函数 */
public MyList() {
public MyList() {
nums = new int[initialC apacity];
nums = new int[c apacity];
}
}
/* 获取列表长度(即当前元素数量)*/
/* 获取列表长度(即当前元素数量)*/
@ -226,7 +259,7 @@ comments: true
/* 获取列表容量 */
/* 获取列表容量 */
public int capacity() {
public int capacity() {
return nums.length ;
return capacity ;
}
}
/* 访问元素 */
/* 访问元素 */
@ -247,7 +280,7 @@ comments: true
/* 尾部添加元素 */
/* 尾部添加元素 */
public void add(int num) {
public void add(int num) {
// 元素数量超出容量时,触发扩容机制
// 元素数量超出容量时,触发扩容机制
if (size == nums.length )
if (size == capacity() )
extendCapacity();
extendCapacity();
nums[size] = num;
nums[size] = num;
// 更新元素数量
// 更新元素数量
@ -259,7 +292,7 @@ comments: true
if (index >= size)
if (index >= size)
throw new IndexOutOfBoundsException("索引越界");
throw new IndexOutOfBoundsException("索引越界");
// 元素数量超出容量时,触发扩容机制
// 元素数量超出容量时,触发扩容机制
if (size == nums.length )
if (size == capacity() )
extendCapacity();
extendCapacity();
// 索引 i 以及之后的元素都向后移动一位
// 索引 i 以及之后的元素都向后移动一位
for (int j = size - 1; j >= index; j--) {
for (int j = size - 1; j >= index; j--) {
@ -285,7 +318,9 @@ comments: true
/* 列表扩容 */
/* 列表扩容 */
public void extendCapacity() {
public void extendCapacity() {
// 新建一个长度为 size 的数组,并将原数组拷贝到新数组
// 新建一个长度为 size 的数组,并将原数组拷贝到新数组
nums = Arrays.copyOf(nums, nums.length * extendRatio);
nums = Arrays.copyOf(nums, capacity() * extendRatio);
// 更新列表容量
capacity = nums.length;
}
}
}
}
```
```
@ -293,7 +328,108 @@ comments: true
=== "C++"
=== "C++"
```cpp title="my_list.cpp"
```cpp title="my_list.cpp"
/* 列表类简易实现 */
class MyList {
private:
int* nums; // 数组(存储列表元素)
int numsCapacity = 10; // 列表容量
int numsSize = 0; // 列表长度(即当前元素数量)
int extendRatio = 2; // 每次列表扩容的倍数
public:
/* 构造函数 */
MyList() {
nums = new int[numsCapacity];
}
/* 获取列表长度(即当前元素数量)*/
int size() {
return numsSize;
}
/* 获取列表容量 */
int capacity() {
return numsCapacity;
}
/* 访问元素 */
int get(int index) {
// 索引如果越界则抛出异常,下同
if (index >= size())
throw std::out_of_range ("索引越界");
return nums[index];
}
/* 更新元素 */
void set(int index, int num) {
if (index >= size())
throw std::out_of_range ("索引越界");
nums[index] = num;
}
/* 尾部添加元素 */
void add(int num) {
// 元素数量超出容量时,触发扩容机制
if (size() == capacity())
extendCapacity();
nums[size()] = num;
// 更新元素数量
numsSize++;
}
/* 中间插入元素 */
void insert(int index, int num) {
if (index >= size())
throw std::out_of_range ("索引越界");
// 元素数量超出容量时,触发扩容机制
if (size() == capacity())
extendCapacity();
// 索引 i 以及之后的元素都向后移动一位
for (int j = size() - 1; j >= index; j--) {
nums[j + 1] = nums[j];
}
nums[index] = num;
// 更新元素数量
numsSize++;
}
/* 删除元素 */
void remove(int index) {
if (index >= size())
throw std::out_of_range ("索引越界");
// 索引 i 之后的元素都向前移动一位
for (int j = index; j < size ( ) - 1 ; j + + ) {
nums[j] = nums[j + 1];
}
// 更新元素数量
numsSize--;
}
/* 列表扩容 */
void extendCapacity() {
// 新建一个长度为 size * extendRatio 的数组,并将原数组拷贝到新数组
int newCapacity = capacity() * extendRatio;
int* extend = new int[newCapacity];
// 将原数组中的所有元素复制到新数组
for (int i = 0; i < size ( ) ; i + + ) {
extend[i] = nums[i];
}
int* temp = nums;
nums = extend;
delete[] temp;
numsCapacity = newCapacity;
}
/* 将列表转换为 Vector 用于打印 */
vector< int > toVector() {
// 仅转换有效长度范围内的列表元素
vector< int > vec(size());
for (int i = 0; i < size ( ) ; i + + ) {
vec[i] = nums[i];
}
return vec;
}
};
```
```
=== "Python"
=== "Python"
@ -303,10 +439,10 @@ comments: true
class MyList:
class MyList:
""" 构造函数 """
""" 构造函数 """
def __init__ (self):
def __init__ (self):
self._initial_ capacity = 10 # 列表初始 容量
self._capacity = 10 # 列表容量
self._nums = [0] * self._initial_ capacity # 数组(存储列表元素)
self._nums = [0] * self._capacity # 数组(存储列表元素)
self._size = 0 # 列表长度(即当前元素数量)
self._size = 0 # 列表长度(即当前元素数量)
self._extend_ratio = 2 # 每次列表扩容的倍数
self._extend_ratio = 2 # 每次列表扩容的倍数
""" 获取列表长度(即当前元素数量) """
""" 获取列表长度(即当前元素数量) """
def size(self):
def size(self):
@ -314,7 +450,7 @@ comments: true
""" 获取列表容量 """
""" 获取列表容量 """
def capacity(self):
def capacity(self):
return len(self._nums)
return self._capacity
""" 访问元素 """
""" 访问元素 """
def get(self, index):
def get(self, index):
@ -355,4 +491,6 @@ comments: true
def extend_capacity(self):
def extend_capacity(self):
# 新建一个长度为 self._size 的数组,并将原数组拷贝到新数组
# 新建一个长度为 self._size 的数组,并将原数组拷贝到新数组
self._nums = self._nums + [0] * self.capacity() * (self._extend_ratio - 1)
self._nums = self._nums + [0] * self.capacity() * (self._extend_ratio - 1)
# 更新列表容量
self._capacity = len(self._nums)
```
```