题解 | #合并两个排序的链表#

合并两个排序的链表

https://www.nowcoder.com/practice/d8b6b4358f774294a89de2a6ac4d9337

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param pHead1 ListNode类 
     * @param pHead2 ListNode类 
     * @return ListNode类
     */
    ListNode* Merge(ListNode* pHead1, ListNode* pHead2) {
        // write code here
        if(pHead1 == nullptr || pHead2 == nullptr) return pHead1==nullptr ?pHead2 :pHead1;
        ListNode* head = pHead1->val <= pHead2->val ? pHead1 : pHead2;
        ListNode* cur1 = head->next;
        ListNode* cur2 = head == pHead1 ? pHead2 : pHead1;
        ListNode* pre = head;
        while(cur1!=nullptr && cur2!=nullptr) {
            if(cur1->val <= cur2->val) {
                pre->next =cur1;
                cur1=cur1->next;
            } else{
                pre->next =cur2;
                cur2=cur2->next;
            }
            pre = pre->next;
        }
        pre->next = cur1!=nullptr ? cur1 : cur2;
        return head;
    }
};

//         ↓cur2
// List1    2     4      6

//         ↓cur1
// List2    1     3      5      7     8


// ↓
// head(pre)

全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-26 15:46
已编辑
字节国际 电商后端 24k-35k
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务