[leetCode][JS] 21. Merge Two Sorted Lists - recursion

GY·2021년 11월 13일
0

알고리즘 문제 풀이

목록 보기
66/92

🧦 Decription

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

Example 1:

Input: l1 = [1,2,4], l2 = [1,3,4]
Output: [1,1,2,3,4,4]

Example 2:

Input: l1 = [], l2 = []
Output: []

Example 3:

Input: l1 = [], l2 = [0]
Output: [0]


🧦 Solution

var mergeTwoLists = function(l1, l2) {
      if (l1 === null) {
        return l2;
    }
    
    if (l2 === null) {
        return l1;
    }
    
    if (l1.val < l2.val) {
        l1.next = mergeTwoLists(l1.next, l2);
            console.log(l1,l2)
        return l1;
    } else {
        l2.next = mergeTwoLists(l1, l2.next);
            console.log(l1,l2)
        return l2;
    }
};

아직 완전히 이해했다기에는 헷갈리는 부분이 있지만, 재귀함수를 이용한 풀이이다.



🧦 Result

  • Runtime: 228 ms, faster than 5.22% of JavaScript online submissions for Merge Two Sorted Lists.
  • Memory Usage: 45.9 MB, less than 5.01% of JavaScript online submissions for Merge Two Sorted Lists.


Reference

profile
Why?에서 시작해 How를 찾는 과정을 좋아합니다. 그 고민과 성장의 과정을 꾸준히 기록하고자 합니다.

0개의 댓글