250x250
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
- dfs
- set
- sql
- JPA
- CSS
- math
- Java
- 스택
- 스프링부트
- scanner
- deque
- 큐
- Calendar
- spring boot
- GC로그수집
- BFS
- NIO
- union_find
- List
- html
- Properties
- alter
- string
- 힙덤프
- map
- priority_queue
- 리소스모니터링
- javascript
- Union-find
- date
Archives
- Today
- Total
매일 조금씩
Leet code (Easy) : 21. Merge Two Sorted Lists - JAVA 본문
728x90
반응형
LinkedList 의 개념을 다시 잡을 수 있었다.
연결된 노드 객체들은 다음 노드를 가리키는 포인터를 갖는다.
사이클이 없다면, LinkedList의 헤드를 가리키는 더미 노드를 임의로 생성해서 활용해도 된다.
이 문제에선 그 더미노드를 사용하는 것이 핵심이다.
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
// 헤드를 리턴하기 위해 헤드 앞에오는. 헤드를 가리키는 더미 노드를 생성.
ListNode dummy = new ListNode();
// 결과 링크드리스트를 만들기 위한 포인터를 더미를 가르키도록 초기화하면서 만듦.
ListNode curr = dummy;
while(list1 != null && list2 != null){
if(list1.val > list2.val){
cur.next = list2;
list2 = list2.next;
} else{
cur.next = list1;
list1 = list1.next;
}
cur = cur.next;
}
// 남은 노드를 연결
cur.next = (list1 != null)? list1 : list2;
// 헤드 노드를 리턴
return dummy.next;
}
}
728x90
반응형
'알고리즘 > LinkedList' 카테고리의 다른 글
Leet code (Medium): 143. Reorder List - JAVA (2) | 2024.10.20 |
---|---|
Leet code (Medium): 19. Remove Nth Node From End of List - JAVA (0) | 2024.10.19 |
Leet code (Hard): 23. Merge k Sorted Lists - JAVA (0) | 2024.10.17 |
Leet code (Easy) : 141. Linked List Cycle - JAVA (1) | 2024.10.16 |
Leet code (Easy) : 206. Reverse Linked List - JAVA (0) | 2024.10.16 |