티스토리 뷰
Problem
Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Return the linked list sorted as well.
Example 1:
Input: head = [1,2,3,3,4,4,5]
Output: [1,2,5]
Example 2:
Input: head = [1,1,1,2,3]
Output: [2,3]
Constraints:
- The number of nodes in the list is in the range [0, 300].
- -100 <= Node.val <= 100
- The list is guaranteed to be sorted in ascending order.
Solution
오름차순으로 정렬된 연결 리스트의 head 노드가 주어질 때, 중복된 값을 가진 노드를 모두 제거하는 문제입니다.
import io.lcalmsky.leetcode.ListNode;
public class Solution {
public ListNode deleteDuplicates(ListNode head) {
ListNode dummy = new ListNode(0); // (1)
dummy.next = head;
ListNode current = dummy;
int duplicated;
while (current.next != null && current.next.next != null) {
if (current.next.val == current.next.next.val) { // (2)
duplicated = current.next.val; // (3)
while (current.next != null && current.next.val == duplicated) { // (4)
current.next = current.next.next;
}
} else { // (4)
current = current.next;
}
}
return dummy.next; // (5)
}
}
- 첫 노드부터 중복 값을 가질 수 있으므로 dummy를 생성해 head 노드를 붙여줍니다.
- 다음 노드와 다다음 노드가 같을 때
- 중복 값을 갱신하고
- 중복 값이 계속되는 동안 현재 노드의 다음 노드를 다다음 노드로 계속 이동시킵니다.
- 중복 값이 아닐 때 현재 노드의 포인터를 이동시킵니다.
- dummy 노드를 그대로 반환하면 안 되므로 다음 노드를 반환합니다.
Test
package io.lcalmsky.leetcode.remove_duplicates_from_sorted_list_ii;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.ListNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(ListNode.of(1, 2, 3, 3, 4, 4, 5), ListNode.of(1, 2, 5)),
() -> test(ListNode.of(1, 1, 1, 2, 3), ListNode.of(2, 3))
);
}
private void test(ListNode given, ListNode expected) {
// when
Solution solution = new Solution();
ListNode actual = solution.deleteDuplicates(given);
// then
assertEquals(expected, actual);
}
}
ListNode.java 전체 보기
package io.lcalmsky.leetcode;
import java.util.Objects;
public class ListNode {
public int val;
public ListNode next;
public ListNode(int val) {
this.val = val;
}
public static ListNode of(int... integers) {
if (integers == null || integers.length == 0) throw new IllegalArgumentException();
ListNode head = new ListNode(0);
ListNode last = head;
ListNode p;
for (int integer : integers) {
p = new ListNode(integer);
last.next = p;
last = last.next;
}
return head.next;
}
@Override
public String toString() {
return "ListNode{" +
"val=" + val +
", next=" + next +
'}';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof ListNode)) return false;
ListNode listNode = (ListNode) o;
return val == listNode.val &&
Objects.equals(next, listNode.next);
}
@Override
public int hashCode() {
return Objects.hash(val, next);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
61. Rotate List (0) | 2022.03.19 |
---|---|
2. Add Two Numbers (0) | 2022.03.18 |
413. Arithmetic Slices (0) | 2022.03.15 |
141. Linked List Cycle (0) | 2022.03.14 |
21. Merge Two Sorted Lists (0) | 2022.03.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- leetcode
- 스프링 부트
- 스프링 부트 애플리케이션
- Linux
- 함께 자라기
- JPA
- JSON
- @ManyToOne
- r
- spring boot app
- 클린 아키텍처
- 스프링 데이터 jpa
- 스프링부트
- Spring Boot JPA
- Java
- spring boot jwt
- QueryDSL
- Spring Boot Tutorial
- 함께 자라기 후기
- Jackson
- gRPC
- Spring Data JPA
- intellij
- 스프링 부트 튜토리얼
- 스프링 부트 회원 가입
- 헥사고날 아키텍처
- 알고리즘
- proto3
- spring boot application
- Spring Boot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함