push
This commit is contained in:
parent
9d87a37232
commit
11a2cbd3bd
|
@ -6,106 +6,118 @@
|
|||
|
||||
#include "../utils/common.hpp"
|
||||
|
||||
/* 随机访问元素 */
|
||||
int randomAccess(int *nums, int size) {
|
||||
// 在区间 [0, size) 中随机抽取一个数字
|
||||
/* 随机访问元素 */
|
||||
int randomAccess(int *nums, int size)
|
||||
{ // *nums 为数组首地址
|
||||
// 在区间 [0, size) 中随机抽取一个数字
|
||||
int randomIndex = rand() % size;
|
||||
// 获取并返回随机元素
|
||||
int randomNum = nums[randomIndex];
|
||||
// 获取并返回随机元素
|
||||
int randomNum = nums[randomIndex]; // nums[randomIndex] 等价于 *(nums + randomIndex)
|
||||
return randomNum;
|
||||
}
|
||||
|
||||
/* 扩展数组长度 */
|
||||
int *extend(int *nums, int size, int enlarge) {
|
||||
// 初始化一个扩展长度后的数组
|
||||
int *res = new int[size + enlarge];
|
||||
// 将原数组中的所有元素复制到新数组
|
||||
for (int i = 0; i < size; i++) {
|
||||
/* 扩展数组长度 */
|
||||
int *extend(int *nums, int size, int enlarge)
|
||||
{
|
||||
// 初始化一个扩展长度后的数组
|
||||
int *res = new int[size + enlarge]; // 申请新的内存空间
|
||||
// 将原数组中的所有元素复制到新数组
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
res[i] = nums[i];
|
||||
}
|
||||
// 释放内存
|
||||
delete[] nums;
|
||||
// 返回扩展后的新数组
|
||||
// 释放内存
|
||||
delete[] nums; // 释放原数组的内存空间
|
||||
// 返回扩展后的新数组
|
||||
return res;
|
||||
}
|
||||
|
||||
/* 在数组的索引 index 处插入元素 num */
|
||||
void insert(int *nums, int size, int num, int index) {
|
||||
// 把索引 index 以及之后的所有元素向后移动一位
|
||||
for (int i = size - 1; i > index; i--) {
|
||||
/* 在数组的索引 index 处插入元素 num */
|
||||
void insert(int *nums, int size, int num, int index)
|
||||
{
|
||||
// 把索引 index 以及之后的所有元素向后移动一位
|
||||
for (int i = size - 1; i > index; i--)
|
||||
{
|
||||
nums[i] = nums[i - 1];
|
||||
}
|
||||
// 将 num 赋给 index 处的元素
|
||||
// 将 num 赋给 index 处的元素
|
||||
nums[index] = num;
|
||||
}
|
||||
|
||||
/* 删除索引 index 处的元素 */
|
||||
void remove(int *nums, int size, int index) {
|
||||
// 把索引 index 之后的所有元素向前移动一位
|
||||
for (int i = index; i < size - 1; i++) {
|
||||
/* 删除索引 index 处的元素 */
|
||||
void remove(int *nums, int size, int index)
|
||||
{
|
||||
// 把索引 index 之后的所有元素向前移动一位
|
||||
for (int i = index; i < size - 1; i++)
|
||||
{
|
||||
nums[i] = nums[i + 1];
|
||||
}
|
||||
}
|
||||
|
||||
/* 遍历数组 */
|
||||
void traverse(int *nums, int size) {
|
||||
/* 遍历数组 */
|
||||
void traverse(int *nums, int size)
|
||||
{
|
||||
int count = 0;
|
||||
// 通过索引遍历数组
|
||||
for (int i = 0; i < size; i++) {
|
||||
// 通过索引遍历数组
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
count += nums[i];
|
||||
}
|
||||
}
|
||||
|
||||
/* 在数组中查找指定元素 */
|
||||
int find(int *nums, int size, int target) {
|
||||
for (int i = 0; i < size; i++) {
|
||||
/* 在数组中查找指定元素 */
|
||||
int find(int *nums, int size, int target)
|
||||
{
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
if (nums[i] == target)
|
||||
return i;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Driver Code */
|
||||
int main() {
|
||||
/* 初始化数组 */
|
||||
/* Driver Code */ // 驱动代码
|
||||
int main()
|
||||
{
|
||||
/* 初始化数组 */
|
||||
int size = 5;
|
||||
int *arr = new int[size];
|
||||
cout << "数组 arr = ";
|
||||
cout << "数组 arr = "; // 没初始化的数组打印的是随机值
|
||||
printArray(arr, size);
|
||||
|
||||
int *nums = new int[size]{1, 3, 2, 5, 4};
|
||||
cout << "数组 nums = ";
|
||||
int *nums = new int[size]{1, 3, 2, 5, 4}; // []{} 是数组的一种初始化方式(初始化列表)
|
||||
cout << "数组 nums = ";
|
||||
printArray(nums, size);
|
||||
|
||||
/* 随机访问 */
|
||||
/* 随机访问 */
|
||||
int randomNum = randomAccess(nums, size);
|
||||
cout << "在 nums 中获取随机元素 " << randomNum << endl;
|
||||
cout << "在 nums 中获取随机元素 " << randomNum << endl;
|
||||
|
||||
/* 长度扩展 */
|
||||
/* 长度扩展 */
|
||||
int enlarge = 3;
|
||||
nums = extend(nums, size, enlarge);
|
||||
size += enlarge;
|
||||
cout << "将数组长度扩展至 8 ,得到 nums = ";
|
||||
cout << "将数组长度扩展至 8 ,得到 nums = ";
|
||||
printArray(nums, size);
|
||||
|
||||
/* 插入元素 */
|
||||
/* 插入元素 */
|
||||
insert(nums, size, 6, 3);
|
||||
cout << "在索引 3 处插入数字 6 ,得到 nums = ";
|
||||
cout << "在索引 3 处插入数字 6 ,得到 nums = ";
|
||||
printArray(nums, size);
|
||||
|
||||
/* 删除元素 */
|
||||
/* 删除元素 */
|
||||
remove(nums, size, 2);
|
||||
cout << "删除索引 2 处的元素,得到 nums = ";
|
||||
cout << "删除索引 2 处的元素,得到 nums = ";
|
||||
printArray(nums, size);
|
||||
|
||||
/* 遍历数组 */
|
||||
/* 遍历数组 */
|
||||
traverse(nums, size);
|
||||
|
||||
/* 查找元素 */
|
||||
/* 查找元素 */
|
||||
int index = find(nums, size, 3);
|
||||
cout << "在 nums 中查找元素 3 ,得到索引 = " << index << endl;
|
||||
cout << "在 nums 中查找元素 3 ,得到索引 = " << index << endl;
|
||||
|
||||
// 释放内存
|
||||
// 释放内存
|
||||
delete[] arr;
|
||||
delete[] nums;
|
||||
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
|
||||
#include "../utils/common.hpp"
|
||||
|
||||
/* 在链表的节点 n0 之后插入节点 P */
|
||||
/* 在链表的节点 n0 之后插入节点 P */
|
||||
void insert(ListNode *n0, ListNode *P) {
|
||||
ListNode *n1 = n0->next;
|
||||
P->next = n1;
|
||||
n0->next = P;
|
||||
}
|
||||
|
||||
/* 删除链表的节点 n0 之后的首个节点 */
|
||||
/* 删除链表的节点 n0 之后的首个节点 */
|
||||
void remove(ListNode *n0) {
|
||||
if (n0->next == nullptr)
|
||||
return;
|
||||
|
@ -21,11 +21,11 @@ void remove(ListNode *n0) {
|
|||
ListNode *P = n0->next;
|
||||
ListNode *n1 = P->next;
|
||||
n0->next = n1;
|
||||
// 释放内存
|
||||
// 释放内存
|
||||
delete P;
|
||||
}
|
||||
|
||||
/* 访问链表中索引为 index 的节点 */
|
||||
/* 访问链表中索引为 index 的节点 */
|
||||
ListNode *access(ListNode *head, int index) {
|
||||
for (int i = 0; i < index; i++) {
|
||||
if (head == nullptr)
|
||||
|
@ -35,7 +35,7 @@ ListNode *access(ListNode *head, int index) {
|
|||
return head;
|
||||
}
|
||||
|
||||
/* 在链表中查找值为 target 的首个节点 */
|
||||
/* 在链表中查找值为 target 的首个节点 */
|
||||
int find(ListNode *head, int target) {
|
||||
int index = 0;
|
||||
while (head != nullptr) {
|
||||
|
@ -49,40 +49,40 @@ int find(ListNode *head, int target) {
|
|||
|
||||
/* Driver Code */
|
||||
int main() {
|
||||
/* 初始化链表 */
|
||||
// 初始化各个节点
|
||||
/* 初始化链表 */
|
||||
// 初始化各个节点
|
||||
ListNode *n0 = new ListNode(1);
|
||||
ListNode *n1 = new ListNode(3);
|
||||
ListNode *n2 = new ListNode(2);
|
||||
ListNode *n3 = new ListNode(5);
|
||||
ListNode *n4 = new ListNode(4);
|
||||
// 构建节点之间的引用
|
||||
// 构建节点之间的引用
|
||||
n0->next = n1;
|
||||
n1->next = n2;
|
||||
n2->next = n3;
|
||||
n3->next = n4;
|
||||
cout << "初始化的链表为" << endl;
|
||||
cout << "初始化的链表为" << endl;
|
||||
printLinkedList(n0);
|
||||
|
||||
/* 插入节点 */
|
||||
/* 插入节点 */
|
||||
insert(n0, new ListNode(0));
|
||||
cout << "插入节点后的链表为" << endl;
|
||||
cout << "插入节点后的链表为" << endl;
|
||||
printLinkedList(n0);
|
||||
|
||||
/* 删除节点 */
|
||||
/* 删除节点 */
|
||||
remove(n0);
|
||||
cout << "删除节点后的链表为" << endl;
|
||||
cout << "删除节点后的链表为" << endl;
|
||||
printLinkedList(n0);
|
||||
|
||||
/* 访问节点 */
|
||||
/* 访问节点 */
|
||||
ListNode *node = access(n0, 3);
|
||||
cout << "链表中索引 3 处的节点的值 = " << node->val << endl;
|
||||
cout << "链表中索引 3 处的节点的值 = " << node->val << endl;
|
||||
|
||||
/* 查找节点 */
|
||||
/* 查找节点 */
|
||||
int index = find(n0, 2);
|
||||
cout << "链表中值为 2 的节点的索引 = " << index << endl;
|
||||
cout << "链表中值为 2 的节点的索引 = " << index << endl;
|
||||
|
||||
// 释放内存
|
||||
// 释放内存
|
||||
freeMemoryLinkedList(n0);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue