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

合并两个排序的链表

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

还没有那个合并数组的难。。。

// struct ListNode {
//     int val;
//     struct ListNode *next;
//     ListNode(int x) :
//             val(x), next(NULL) {
//     }
// };
class Solution {
public:
    ListNode* Merge(ListNode* pHead1, ListNode* pHead2) {
        ListNode* newList = new ListNode(0);
        auto bak = newList;
        while(pHead1 && pHead2){
            if(pHead1->val <= pHead2->val){
                newList->next = pHead1;
                pHead1 = pHead1->next;
            }else{
                newList->next = pHead2;
                pHead2 = pHead2->next;
            }
            newList = newList->next;
        }
        if(pHead1) newList->next = pHead1;
        if(pHead2) newList->next = pHead2;
        return bak->next;
    }
};
全部评论
这个bak是干嘛用的
点赞 回复 分享
发布于 2021-09-19 13:35

相关推荐

点赞 评论 收藏
分享
后来123321:别着急,我学院本大二,投了1100份,两个面试,其中一个还是我去线下招聘会投的简历,有时候这东西也得看运气
无实习如何秋招上岸
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务