21. Merge Two Sorted Lists

2017-06-14  本文已影响0人  YellowLayne

1.描述

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.

2.分析

3.代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
 
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
    if (NULL == l1 && NULL == l2) return NULL;
    if (NULL == l1) return l2;
    if (NULL == l2) return l1;
    
    struct ListNode* l3 = l1->val <= l2->val ? l1 : l2;
    if (l1->val <= l2->val) l1 = l1->next;
    else l2 = l2->next;
    struct ListNode* tail = l3;
    
    while (l1 && l2) {
        if (l1->val <= l2->val) {
            tail->next = l1;
            l1 = l1->next;
        } else {
            tail->next = l2;
            l2 = l2->next;
        }
        tail = tail->next;
    }
    tail->next = l1 ? l1 : l2;
    return l3;
}
上一篇 下一篇

猜你喜欢

热点阅读