looked and push

This commit is contained in:
flykhan 2024-02-22 14:56:29 +08:00
parent 11a2cbd3bd
commit b44d2932fc
3 changed files with 148 additions and 119 deletions

View File

@ -7,16 +7,18 @@
#include "../utils/common.hpp" #include "../utils/common.hpp"
/* 在链表的节点 n0 之后插入节点 P */ /* 在链表的节点 n0 之后插入节点 P */
void insert(ListNode *n0, ListNode *P) { void insert(ListNode *n0, ListNode *P)
ListNode *n1 = n0->next; {
P->next = n1; ListNode *n1 = n0->next; // n0 -> n1
n0->next = P; P->next = n1; // P -> n1
n0->next = P; // n0 -> P
} }
/* 删除链表的节点 n0 之后的首个节点 */ /* 删除链表的节点 n0 之后的首个节点 */
void remove(ListNode *n0) { void remove(ListNode *n0)
{
if (n0->next == nullptr) if (n0->next == nullptr)
return; return; // n0 之后没有节点
// n0 -> P -> n1 // n0 -> P -> n1
ListNode *P = n0->next; ListNode *P = n0->next;
ListNode *n1 = P->next; ListNode *n1 = P->next;
@ -26,8 +28,10 @@ void remove(ListNode *n0) {
} }
/* 访问链表中索引为 index 的节点 */ /* 访问链表中索引为 index 的节点 */
ListNode *access(ListNode *head, int index) { ListNode *access(ListNode *head, int index)
for (int i = 0; i < index; i++) { {
for (int i = 0; i < index; i++)
{
if (head == nullptr) if (head == nullptr)
return nullptr; return nullptr;
head = head->next; head = head->next;
@ -36,25 +40,28 @@ ListNode *access(ListNode *head, int index) {
} }
/* 在链表中查找值为 target 的首个节点 */ /* 在链表中查找值为 target 的首个节点 */
int find(ListNode *head, int target) { int find(ListNode *head, int target)
{
int index = 0; int index = 0;
while (head != nullptr) { while (head != nullptr)
if (head->val == target) {
return index; if (head->val == target) // 找到节点
head = head->next; return index; // 返回索引
index++; head = head->next; // 更新节点
index++; // 更新索引
} }
return -1; return -1; // 未找到节点, 返回 -1
} }
/* Driver Code */ /* Driver Code */
int main() { int main()
{
/* 初始化链表 */ /* 初始化链表 */
// 初始化各个节点 // 初始化各个节点
ListNode *n0 = new ListNode(1); ListNode *n0 = new ListNode(1); // 创建一个节点, 值为1
ListNode *n1 = new ListNode(3); ListNode *n1 = new ListNode(3);
ListNode *n2 = new ListNode(2); ListNode *n2 = new ListNode(2);
ListNode *n3 = new ListNode(5); ListNode *n3 = new ListNode(5); // 创建一个节点, 值为5
ListNode *n4 = new ListNode(4); ListNode *n4 = new ListNode(4);
// 构建节点之间的引用 // 构建节点之间的引用
n0->next = n1; n0->next = n1;

View File

@ -7,65 +7,69 @@
#include "../utils/common.hpp" #include "../utils/common.hpp"
/* Driver Code */ /* Driver Code */
int main() { int main()
/* 初始化列表 */ {
/* 初始化列表 */
vector<int> nums = {1, 3, 2, 5, 4}; vector<int> nums = {1, 3, 2, 5, 4};
cout << "列表 nums = "; cout << "列表 nums = ";
printVector(nums); printVector(nums);
/* 访问元素 */ /* 访问元素 */
int num = nums[1]; int num = nums[1];
cout << "访问索引 1 处的元素,得到 num = " << num << endl; cout << "访问索引 1 处的元素,得到 num = " << num << endl;
/* 更新元素 */ /* 更新元素 */
nums[1] = 0; nums[1] = 0;
cout << "将索引 1 处的元素更新为 0 ,得到 nums = "; cout << "将索引 1 处的元素更新为 0 ,得到 nums = ";
printVector(nums); printVector(nums);
/* 清空列表 */ /* 清空列表 */
nums.clear(); nums.clear();
cout << "清空列表后 nums = "; cout << "清空列表后 nums = ";
printVector(nums); printVector(nums);
/* 在尾部添加元素 */ /* 在尾部添加元素 */
nums.push_back(1); nums.push_back(1);
nums.push_back(3); nums.push_back(3);
nums.push_back(2); nums.push_back(2);
nums.push_back(5); nums.push_back(5);
nums.push_back(4); nums.push_back(4);
cout << "添加元素后 nums = "; cout << "添加元素后 nums = ";
printVector(nums); printVector(nums);
/* 在中间插入元素 */ /* 在中间插入元素 */
nums.insert(nums.begin() + 3, 6); nums.insert(nums.begin() + 3, 6);
cout << "在索引 3 处插入数字 6 ,得到 nums = "; cout << "在索引 3 处插入数字 6 ,得到 nums = ";
printVector(nums); printVector(nums);
/* 删除元素 */ /* 删除元素 */
nums.erase(nums.begin() + 3); nums.erase(nums.begin() + 3);
cout << "删除索引 3 处的元素,得到 nums = "; cout << "删除索引 3 处的元素,得到 nums = ";
printVector(nums); printVector(nums);
/* 通过索引遍历列表 */ /* 通过索引遍历列表 */
int count = 0; int count = 0;
for (int i = 0; i < nums.size(); i++) { for (int i = 0; i < nums.size(); i++)
{
count += nums[i]; count += nums[i];
} }
/* 直接遍历列表元素 */ /* 直接遍历列表元素 */
count = 0; count = 0;
for (int x : nums) { for (int x : nums)
{
count += x; count += x;
} }
/* 拼接两个列表 */ /* 拼接两个列表 */
vector<int> nums1 = {6, 8, 7, 10, 9}; vector<int> nums1 = {6, 8, 7, 10, 9};
nums.insert(nums.end(), nums1.begin(), nums1.end()); nums.insert(nums.end(), nums1.begin(), nums1.end());
cout << "将列表 nums1 拼接到 nums 之后,得到 nums = "; cout << "将列表 nums1 拼接到 nums 之后,得到 nums = ";
printVector(nums); printVector(nums);
/* 排序列表 */ /* 排序列表 */
sort(nums.begin(), nums.end()); // sort(nums.begin(), nums.end() ); // 默认升序
cout << "排序列表后 nums = "; sort(nums.begin(), nums.end(),less<int>());
cout << "排序列表后 nums = ";
printVector(nums); printVector(nums);
return 0; return 0;

View File

@ -6,111 +6,127 @@
#include "../utils/common.hpp" #include "../utils/common.hpp"
/* 列表类 */ /* 列表类 */
class MyList { class MyList
private: {
int *arr; // 数组(存储列表元素) private:
int arrCapacity = 10; // 列表容量 int *arr; // 数组(存储列表元素)
int arrSize = 0; // 列表长度(当前元素数量) int arrCapacity = 10; // 列表容量
int extendRatio = 2; // 每次列表扩容的倍数 int arrSize = 0; // 列表长度(当前元素数量)
int extendRatio = 2; // 每次列表扩容的倍数
public: public:
/* 构造方法 */ /* 构造方法 */
MyList() { MyList()
{
arr = new int[arrCapacity]; arr = new int[arrCapacity];
} }
/* 析构方法 */ /* 析构方法 */
~MyList() { ~MyList()
{
delete[] arr; delete[] arr;
} }
/* 获取列表长度(当前元素数量)*/ /* 获取列表长度(当前元素数量)*/
int size() { int size()
{
return arrSize; return arrSize;
} }
/* 获取列表容量 */ /* 获取列表容量 */
int capacity() { int capacity()
{
return arrCapacity; return arrCapacity;
} }
/* 访问元素 */ /* 访问元素 */
int get(int index) { int get(int index)
// 索引如果越界,则抛出异常,下同 {
// 索引如果越界,则抛出异常,下同
if (index < 0 || index >= size()) if (index < 0 || index >= size())
throw out_of_range("索引越界"); throw out_of_range("索引越界"); // out_of_range 是 C++ 标准库中的异常类
return arr[index]; return arr[index];
} }
/* 更新元素 */ /* 更新元素 */
void set(int index, int num) { void set(int index, int num)
{
if (index < 0 || index >= size()) if (index < 0 || index >= size())
throw out_of_range("索引越界"); throw out_of_range("索引越界");
arr[index] = num; arr[index] = num;
} }
/* 在尾部添加元素 */ /* 在尾部添加元素 */
void add(int num) { void add(int num)
// 元素数量超出容量时,触发扩容机制 {
// 元素数量超出容量时,触发扩容机制
if (size() == capacity()) if (size() == capacity())
extendCapacity(); extendCapacity();
arr[size()] = num; arr[size()] = num;
// 更新元素数量 // 更新元素数量
arrSize++; arrSize++;
} }
/* 在中间插入元素 */ /* 在中间插入元素 */
void insert(int index, int num) { void insert(int index, int num)
{
if (index < 0 || index >= size()) if (index < 0 || index >= size())
throw out_of_range("索引越界"); throw out_of_range("索引越界");
// 元素数量超出容量时,触发扩容机制 // 元素数量超出容量时,触发扩容机制
if (size() == capacity()) if (size() == capacity())
extendCapacity(); extendCapacity();
// 将索引 index 以及之后的元素都向后移动一位 // 将索引 index 以及之后的元素都向后移动一位
for (int j = size() - 1; j >= index; j--) { for (int j = size() - 1; j >= index; j--)
{
arr[j + 1] = arr[j]; arr[j + 1] = arr[j];
} }
arr[index] = num; arr[index] = num;
// 更新元素数量 // 更新元素数量
arrSize++; arrSize++;
} }
/* 删除元素 */ /* 删除元素 */
int remove(int index) { int remove(int index)
{
if (index < 0 || index >= size()) if (index < 0 || index >= size())
throw out_of_range("索引越界"); throw out_of_range("索引越界");
int num = arr[index]; int num = arr[index];
// 将索引 index 之后的元素都向前移动一位 // 将索引 index 之后的元素都向前移动一位
for (int j = index; j < size() - 1; j++) { for (int j = index; j < size() - 1; j++)
{
arr[j] = arr[j + 1]; arr[j] = arr[j + 1];
} }
// 更新元素数量 // 更新元素数量
arrSize--; arrSize--;
// 返回被删除的元素 // 返回被删除的元素
return num; return num; // 返回被删除的元素(告知调用者删除的元素是什么)
} }
/* 列表扩容 */ /* 列表扩容 */
void extendCapacity() { void extendCapacity()
// 新建一个长度为原数组 extendRatio 倍的新数组 {
int newCapacity = capacity() * extendRatio; // 新建一个长度为原数组 extendRatio 倍的新数组
int *tmp = arr; int newCapacity = capacity() * extendRatio; // 将列表容量扩大 extendRatio 倍
arr = new int[newCapacity]; int *tmp = arr; // 保存原数组的引用
// 将原数组中的所有元素复制到新数组 arr = new int[newCapacity]; // 新建一个长度为 newCapacity 的数组
for (int i = 0; i < size(); i++) { // 将原数组中的所有元素复制到新数组
for (int i = 0; i < size(); i++)
{
arr[i] = tmp[i]; arr[i] = tmp[i];
} }
// 释放内存 // 释放内存
delete[] tmp; delete[] tmp; // 释放原数组的内存
arrCapacity = newCapacity; arrCapacity = newCapacity; // 更新列表容量
} }
/* 将列表转换为 Vector 用于打印 */ /* 将列表转换为 Vector 用于打印 */
vector<int> toVector() { vector<int> toVector()
// 仅转换有效长度范围内的列表元素 {
vector<int> vec(size()); // 仅转换有效长度范围内的列表元素
for (int i = 0; i < size(); i++) { vector<int> vec(size()); // 创建一个长度为 size() 的 vector
for (int i = 0; i < size(); i++)
{
vec[i] = arr[i]; vec[i] = arr[i];
} }
return vec; return vec;
@ -118,53 +134,55 @@ class MyList {
}; };
/* Driver Code */ /* Driver Code */
int main() { int main()
/* 初始化列表 */ {
/* 初始化列表 */
MyList *nums = new MyList(); MyList *nums = new MyList();
/* 在尾部添加元素 */ /* 在尾部添加元素 */
nums->add(1); nums->add(1);
nums->add(3); nums->add(3);
nums->add(2); nums->add(2);
nums->add(5); nums->add(5);
nums->add(4); nums->add(4);
cout << "列表 nums = "; cout << "列表 nums = ";
vector<int> vec = nums->toVector(); vector<int> vec = nums->toVector();
printVector(vec); printVector(vec);
cout << "容量 = " << nums->capacity() << " ,长度 = " << nums->size() << endl; cout << "容量 = " << nums->capacity() << " ,长度 = " << nums->size() << endl;
/* 在中间插入元素 */ /* 在中间插入元素 */
nums->insert(3, 6); nums->insert(3, 6);
cout << "在索引 3 处插入数字 6 ,得到 nums = "; cout << "在索引 3 处插入数字 6 ,得到 nums = ";
vec = nums->toVector(); vec = nums->toVector();
printVector(vec); printVector(vec);
/* 删除元素 */ /* 删除元素 */
nums->remove(3); nums->remove(3);
cout << "删除索引 3 处的元素,得到 nums = "; cout << "删除索引 3 处的元素,得到 nums = ";
vec = nums->toVector(); vec = nums->toVector();
printVector(vec); printVector(vec);
/* 访问元素 */ /* 访问元素 */
int num = nums->get(1); int num = nums->get(1);
cout << "访问索引 1 处的元素,得到 num = " << num << endl; cout << "访问索引 1 处的元素,得到 num = " << num << endl;
/* 更新元素 */ /* 更新元素 */
nums->set(1, 0); nums->set(1, 0);
cout << "将索引 1 处的元素更新为 0 ,得到 nums = "; cout << "将索引 1 处的元素更新为 0 ,得到 nums = ";
vec = nums->toVector(); vec = nums->toVector();
printVector(vec); printVector(vec);
/* 测试扩容机制 */ /* 测试扩容机制 */
for (int i = 0; i < 10; i++) { for (int i = 0; i < 10; i++)
// 在 i = 5 时,列表长度将超出列表容量,此时触发扩容机制 {
// 在 i = 5 时,列表长度将超出列表容量,此时触发扩容机制
nums->add(i); nums->add(i);
} }
cout << "扩容后的列表 nums = "; cout << "扩容后的列表 nums = ";
vec = nums->toVector(); vec = nums->toVector();
printVector(vec); printVector(vec);
cout << "容量 = " << nums->capacity() << " ,长度 = " << nums->size() << endl; cout << "容量 = " << nums->capacity() << " ,长度 = " << nums->size() << endl;
// 释放内存 // 释放内存
delete nums; delete nums;
return 0; return 0;