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

Leetcode: Merge Two Sorted Lists

时间:2014-11-19 21:47:39      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   sp   for   on   div   

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

代码:

class Solution {
public:
    ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) {
        if(l1 == NULL) return l2;
        if(l2 == NULL) return l1;
        
        ListNode *dummy = new ListNode(-1);
        dummy->next = NULL;
        for(ListNode *p = dummy; l1 || l2; p = p->next){
            int l1v = l1?l1->val:INT_MAX;
            int l2v = l2?l2->val:INT_MAX;
            if(l1v <= l2v){
                p->next = l1;
                l1 = l1->next;
            }else{
                p->next = l2;
                l2 = l2->next;
            }
        }
        
        return dummy->next;
    }
};

 

Leetcode: Merge Two Sorted Lists

标签:des   style   blog   io   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/Kai-Xing/p/4109038.html

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