[Leetcode]21. Merge Two Sorted Lists

版权声明:转载请联系博主 https://blog.csdn.net/zxtalentwolf/article/details/84430544

合并两个排序好的列表,递归算法pass

/**
 * 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) {
        if(l1 == nullptr) return l2;
        else if(l2 == nullptr) return l1;
        ListNode * p;
        if(l1->val < l2->val){
             p = l1;
             p -> next = mergeTwoLists(l1->next,l2);
        }
        else{
             p = l2;
             p -> next = mergeTwoLists(l1,l2->next);
        }
        return p;
        
        
    }
};

猜你喜欢

转载自blog.csdn.net/zxtalentwolf/article/details/84430544