当前位置:网站首页>剑指 Offer 25. 合并两个排序的链表
剑指 Offer 25. 合并两个排序的链表
2022-07-02 14:21:00 【anieoo】
solution:
归并的思想
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
ListNode *dummy = new ListNode(-1);
ListNode *cur = dummy;
while(l1 != NULL && l2 != NULL) {
if(l1->val <= l2->val) {
cur->next = new ListNode(l1->val);
cur = cur->next;
l1 = l1->next;
} else {
cur->next = new ListNode(l2->val);
cur = cur->next;
l2 = l2->next;
}
}
if(l1 != NULL) cur->next = l1;
if(l2 != NULL) cur->next = l2;
return dummy->next;
}
};
边栏推荐
- LeetCode 1. Sum of two numbers
- LeetCode 6. Zigzag transformation (n-shaped transformation)
- PWM控制舵机
- 国内比较好的OJ平台[通俗易懂]
- Global and Chinese markets of stainless steel surgical suture 2022-2028: Research Report on technology, participants, trends, market size and share
- Understand one article: four types of data index system
- IP address translation address segment
- Global and Chinese market of discharge machines 2022-2028: Research Report on technology, participants, trends, market size and share
- js删除字符串中的子串
- 有赞和腾讯云、阿里云一同摘得“中国企业云科技服务商50强”[通俗易懂]
猜你喜欢
Digital IC hand tearing code -- voting device
绿竹生物冲刺港股:年期内亏损超5亿 泰格医药与北京亦庄是股东
PWM控制舵机
串口控制舵机转动
⌈ 2022 ⌋ how to use webp gracefully in projects
Error when uploading code to remote warehouse: remote origin already exists
福元医药上交所上市:市值105亿 胡柏藩身价超40亿
PhD Debate-11 预告 | 回顾与展望神经网络的后门攻击与防御
对接保时捷及3PL EDI案例
伟立控股港交所上市:市值5亿港元 为湖北贡献一个IPO
随机推荐
【征文活动】亲爱的开发者,RT-Thread社区喊你投稿啦
Tech Talk 活动预告 | 基于Amazon KVS打造智能视觉产品
LeetCode 4. 寻找两个正序数组的中位数(hard)
机器学习-感知机模型
Exploration of mobile application performance tools
七张图,学会做有价值的经营分析
Global and Chinese market of discharge machines 2022-2028: Research Report on technology, participants, trends, market size and share
一文看懂:数据指标体系的4大类型
LeetCode 4. Find the median (hard) of two positive arrays
How openharmony starts FA of remote devices
Global and Chinese market of jacquard looms 2022-2028: Research Report on technology, participants, trends, market size and share
IP address translation address segment
学习周刊-总第60期-2022年第25周
PhD Debate-11 预告 | 回顾与展望神经网络的后门攻击与防御
Exploration and practice of integration of streaming and wholesale in jd.com
Classic quotations
Error when uploading code to remote warehouse: remote origin already exists
Yolov5 practice: teach object detection by hand
宝宝巴士创业板IPO被终止:曾拟募资18亿 唐光宇控制47%股权
The poor family once again gave birth to a noble son: Jiangxi poor county got the provincial number one, what did you do right?