码迷,mamicode.com
首页 > 其他好文 > 详细

Merge Two Sorted Lists - LeetCode

时间:2019-01-30 14:23:26      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:problem   lse   ini   val   lin   alt   img   init   .com   

目录

题目链接

Merge Two Sorted Lists - LeetCode

注意点

  • 两个链表长度可能不一致

解法

解法一:先比较两个链表长度一致的部分,多余的部分直接加进答案链表即可。时间复杂度为O(n)

/**
 * 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* ans = new ListNode(0);
        ListNode* pointer = ans;
        while(l1 != NULL && l2 != NULL)
        {
            if(l1->val < l2->val)
            {
                pointer->next = new ListNode(l1->val);
                pointer = pointer->next;
                l1 = l1->next;
            }
            else
            {
                pointer->next = new ListNode(l2->val);
                pointer = pointer->next;
                l2 = l2->next;
            }
        }
        while(l1 != NULL)
        {
            pointer->next = new ListNode(l1->val);
            pointer = pointer->next;
            l1 = l1->next;
        }
        while(l2 != NULL)
        {
            pointer->next = new ListNode(l2->val);
            pointer = pointer->next;
            l2 = l2->next;
        }
        return ans->next;
    }
};

技术分享图片

小结

  • 通常链表开头的第一个结点不存放数据,或者是不用来存放数据仅仅是作为一个向后访问用的哨兵节点。

Merge Two Sorted Lists - LeetCode

标签:problem   lse   ini   val   lin   alt   img   init   .com   

原文地址:https://www.cnblogs.com/multhree/p/10337671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!