• 문제 링크
Merge Two Sorted Lists - LeetCode
Can you solve this real interview question? Merge Two Sorted Lists - You are given the heads of two sorted linked lists list1 and list2. Merge the two lists into one sorted list. The list should be made by splicing together the nodes of the first two lists
leetcode.com
• 풀이 코드
public class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
ListNode dummy = new ListNode(-1), cur = dummy;
while (list1 != null && list2 != null) {
if (list1.val < list2.val) {
cur.next = list1;
list1 = list1.next;
} else {
cur.next = list2;
list2 = list2.next;
}
cur = cur.next;
}
cur.next = list1 != null ? list1 : list2;
return dummy.next;
}
}'Problem Solving > LeetCode' 카테고리의 다른 글
| [LeetCode] 27. Remove Element - Java (0) | 2026.05.15 |
|---|---|
| [LeetCode] 26. Remove Duplicates from Sorted Array - Java (0) | 2026.05.14 |
| [LeetCode] 20. Valid Parentheses - Java (0) | 2026.05.12 |
| [LeetCode] 14. Longest Common Prefix - Java (0) | 2026.05.11 |
| [LeetCode] 13. Roman to Integer - Java (0) | 2026.05.10 |
댓글