[JS] Merge Two Sorted Lists
2022. 7. 30. 13:32
🔒 문제 (LeetCode 21)
You are given the heads of two sorted linked lists list1 and list2.
Merge the two lists in a one sorted list. The list should be made by splicing together the nodes of the first two lists.
Return the head of the merged linked list.
Constraints:
- The number of nodes in both lists is in the range [0, 50].
- -100 <= Node.val <= 100
- Both list1 and list2 are sorted in non-decreasing order.
🌊 입출력
Example 1:
Input: list1 = [1,2,4], list2 = [1,3,4]
Output: [1,1,2,3,4,4]
Example 2:
Input: list1 = [], list2 = []
Output: []
Example 3:
Input: list1 = [], list2 = [0]
Output: [0]
🔑 해결
🌌 알고리즘 - 재귀
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} list1
* @param {ListNode} list2
* @return {ListNode}
*/
var mergeTwoLists = function(list1, list2) {
if(!list1) return list2;
if(!list2) return list1;
if(list1.val <= list2.val) {
list1.next = mergeTwoLists(list1.next, list2);
return list1;
} else {
list2.next = mergeTwoLists(list1, list2.next);
return list2;
}
};
'코딩테스트 (JS) > ETC' 카테고리의 다른 글
[JS] Power of Two (0) | 2022.08.02 |
---|---|
[JS] Reverse Linked List (0) | 2022.07.30 |
[JS] 디스크 컨트롤러 (0) | 2022.07.17 |
[JS] 다단계 칫솔 판매 (0) | 2022.07.05 |
[JS] 숫자 블록 (0) | 2022.06.25 |