美文网首页
21. Merge Two Sorted Lists

21. Merge Two Sorted Lists

作者: YellowLayne | 来源:发表于2017-06-14 17:47 被阅读0次

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;
}

相关文章

网友评论

      本文标题:21. Merge Two Sorted Lists

      本文链接:https://www.haomeiwen.com/subject/aikeqxtx.html