Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코딩테스트
- 자료구조
- RxJS
- 포인터
- pytorch
- vue3
- 브라우저
- 해시테이블
- APOLLO
- 큐
- 웹팩
- C
- 자바스크립트
- 프로세스
- 스택
- 배열
- 프로그래머스
- RT scheduling
- GraphQL
- 타입스크립트
- 컨테이너
- 연결 리스트
- Machine Learning
- 알고리즘
- cors
- 연결리스트
- 프론트엔드
- 릿코드
- alexnet
- 이진탐색
Archives
- Today
- Total
프린세스 다이어리
[LeetCode] Merge Two Sorted Lists - 자바스크립트 풀이 본문
728x90
1. 접근 방법
(1) 두 리스트의 head를 비교하고, 둘 중 큰 head를 작은 head의 next로 연결하는 아이디어다.
(2) list1이나 list2가 null이면 둘 중 다른 리스트의 나머지를 다 리턴한다.
if (!list1) return list2;
if (!list2) return list1;
(3) list1.val이 list2.val보다 작으면 list1의 next를 list2로 옮겨준다.
list1.next와 list2를 인자로 넘겨준 결과를 list1이 가리키도록 하면 된다.
if (list1.val <= list2.val) {
list1.next = mergeTwoLists(list1.next, list2);
return list1;
} else {
list2.next = mergeTwoLists(list1, list2.next);
return list2;
}
2. 전체 풀이
/**
* 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;
}
};
728x90
'자료구조, 알고리즘' 카테고리의 다른 글
[Algospot] 고대어 사전 문제 자바스크립트 풀이 (0) | 2022.04.17 |
---|---|
[LeetCode] K-th Symbol in Grammar - 자바스크립트 풀이 (0) | 2021.12.12 |
[LeetCode] Climbing Stairs - 자바스크립트 풀이 (0) | 2021.12.06 |
[LeetCode] Fibonacci Number - 자바스크립트 풀이 (0) | 2021.12.05 |
[LeetCode] Pascal's Triangle II - 자바스크립트 풀이 (0) | 2021.12.05 |
Comments