【每日刷题】Day22

【每日刷题】Day22

🥕个人主页:开敲🍉

🔥所属专栏:每日刷题🍍

🌼文章目录🌼

[1. 1669. 合并两个链表 - 力扣(LeetCode)](#1. 1669. 合并两个链表 - 力扣(LeetCode))

[2. 11. 盛最多水的容器 - 力扣(LeetCode)](#2. 11. 盛最多水的容器 - 力扣(LeetCode))

[3. 148. 排序链表 - 力扣(LeetCode)](#3. 148. 排序链表 - 力扣(LeetCode))

1. 1669. 合并两个链表 - 力扣(LeetCode)

//思路:使用两个指针定位到需要删除的数据的两端,再使用两个指针free掉中间的数据,随后再将链表连接即可

typedef struct ListNode LN;

struct ListNode* mergeInBetween(struct ListNode* list1, int a, int b, struct ListNode* list2)

{

LN* sta = list1;

LN* des = list1;

while(--a)//定位到需要删除的第一个节点的前一个节点

{

sta = sta->next;

}

while(b+1)//定位到需要删除的最后一个节点的后一个节点

{

des = des->next;

b--;

}

LN* pmove = list2;

while(pmove->next)//定位到list2的末尾

{

pmove = pmove->next;

}

LN* pdel = sta->next;

while(pdel!=des)//删除节点

{

LN* pcur = pdel->next;

free(pdel);

pdel = pcur;

}

sta->next = list2;//连接链表

pmove->next = des;

return list1;

}

2. 11. 盛最多水的容器 - 力扣(LeetCode)

//思路:双指针。分别从数组头尾向中间遍历,每一次遍历较小值为高,算出面积,记录最大的面积返回。

int maxArea(int* height, int heightSize)

{

int ans = 0;

int left = 0;

int right = heightSize-1;

while(left<right)

{

int high = height[left]<height[right]?height[left]:height[right];//较小值为高

int area = (right-left)*high;//算出面积

ans = area>ans?area:ans;记录最大面积

height[left]<height[right]?left++:right--;//将较小的那一边向中间遍历一下

}

return ans;

}

3. 148. 排序链表 - 力扣(LeetCode)

//思路:使用数组将链表中的值存储,使用qsort库函数对数组排序,再将数组中的元素逐个放回链表中,完成链表排序

typedef struct ListNode LN;

int cmp(const void* a,const void* b)

{

return *(int*)a-*(int*)b;

}

struct ListNode* sortList(struct ListNode* head)

{

int arr[50001];

LN* pmove = head;

LN* newhead = head;

int i = 0;

while(pmove)//将链表中的值存储进数组

{

arr[i++] = pmove->val;

pmove = pmove->next;

}

qsort(arr,i,sizeof(int),cmp);//按照升序将数组排序

for(int j = 0;j<i;j++)//再将数组的元素逐个存储回链表

{

newhead->val = arr[j];

newhead = newhead->next;

}

return head;

}

相关推荐
pianmian13 小时前
python数据结构基础(7)
数据结构·算法
闲晨3 小时前
C++ 继承:代码传承的魔法棒,开启奇幻编程之旅
java·c语言·开发语言·c++·经验分享
好奇龙猫5 小时前
【学习AI-相关路程-mnist手写数字分类-win-硬件:windows-自我学习AI-实验步骤-全连接神经网络(BPnetwork)-操作流程(3) 】
人工智能·算法
sp_fyf_20246 小时前
计算机前沿技术-人工智能算法-大语言模型-最新研究进展-2024-11-01
人工智能·深度学习·神经网络·算法·机器学习·语言模型·数据挖掘
ChoSeitaku6 小时前
链表交集相关算法题|AB链表公共元素生成链表C|AB链表交集存放于A|连续子序列|相交链表求交点位置(C)
数据结构·考研·链表
偷心编程6 小时前
双向链表专题
数据结构
香菜大丸6 小时前
链表的归并排序
数据结构·算法·链表
jrrz08286 小时前
LeetCode 热题100(七)【链表】(1)
数据结构·c++·算法·leetcode·链表
oliveira-time6 小时前
golang学习2
算法
@小博的博客6 小时前
C++初阶学习第十弹——深入讲解vector的迭代器失效
数据结构·c++·学习