티스토리 뷰
Problem
Given the head of a singly linked list and two integers left and right where left <= right, reverse the nodes of the list from position left to position right, and return the reversed list.
Solution
단방향 연결리스트의 head와 왼쪽, 오른쪽 노드의 값이 주어질 때 왼쪽, 오른쪽에 해당하는 범위 내 노드를 reverse 시키는 문제입니다.
import io.lcalmsky.leetcode.ListNode;
public class Solution {
public ListNode reverseBetween(ListNode head, int left, int right) {
ListNode result = new ListNode(0);
result.next = head;
ListNode prevLeftNode = result;
for (int i = 0; i < left - 1; i++) {
prevLeftNode = prevLeftNode.next;
}
ListNode leftNode = prevLeftNode.next;
ListNode rightNode = leftNode;
for (int i = 0; i < right - left; i++) {
rightNode = rightNode.next;
}
ListNode postRightNode = rightNode.next;
ListNode previous = prevLeftNode;
ListNode node = leftNode;
while (previous != rightNode) {
ListNode next = node.next;
node.next = previous;
previous = node;
node = next;
}
prevLeftNode.next = rightNode;
leftNode.next = postRightNode;
return result.next;
}
}
먼저 left 전 노드와 right 이후 노드를 찾은 뒤 그 사이에 해당하는 노드를 뒤집어주면 됩니다.
Test
package io.lcalmsky.leetcode.reverse_linked_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
public void givenLinkedList_whenReverse_thenCorrect() {
assertAll(
() -> test(ListNode.of(1, 2, 3, 4, 5), 2, 4, ListNode.of(1, 4, 3, 2, 5)),
() -> test(ListNode.of(3, 5), 1, 1, ListNode.of(3, 5))
);
}
private void test(ListNode given, int m, int n, ListNode expected) {
// when
Solution reverseLinkedList2 = new Solution();
ListNode actual = reverseLinkedList2.reverseBetween(given, m, n);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
34. Find First and Last Position of Element in Sorted Array (0) | 2022.07.29 |
---|---|
86. Partition List (0) | 2022.07.23 |
473. Matchsticks to Square (0) | 2022.07.16 |
746. Min Cost Climbing Stairs (0) | 2022.07.15 |
128. Longest Consecutive Sequence (0) | 2022.07.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링 부트
- 스프링 부트 회원 가입
- proto3
- 함께 자라기
- Spring Boot
- 헥사고날 아키텍처
- 알고리즘
- Linux
- spring boot application
- intellij
- r
- JPA
- 스프링 부트 애플리케이션
- 함께 자라기 후기
- Java
- Spring Data JPA
- 클린 아키텍처
- 스프링부트
- Spring Boot Tutorial
- QueryDSL
- gRPC
- Jackson
- JSON
- leetcode
- Spring Boot JPA
- spring boot jwt
- @ManyToOne
- 스프링 부트 튜토리얼
- spring boot app
- 스프링 데이터 jpa
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함