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

Leetcode 21. Merge Two Sorted Lists

时间:2018-07-14 13:02:33      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:node   ret   lse   color   head   sort   wol   def   sts   

/**
 * 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 temp_head(0);
        ListNode * pre = &temp_head;
        while(l1 && l2)
        {
            if(l1->val < l2->val)
            {
                pre->next = l1;
                l1 = l1->next;
            }
            else
            {
                pre->next = l2;
                l2 = l2->next;
            }
            pre = pre->next;
        }
        if(l1)
        {
            pre->next = l1;
        }
        if(l2)
        {
            pre->next = l2;
        }
        return temp_head.next;
    }
};

 

Leetcode 21. Merge Two Sorted Lists

标签:node   ret   lse   color   head   sort   wol   def   sts   

原文地址:https://www.cnblogs.com/randyniu/p/9309096.html

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