티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 876. Middle of the Linked List
Jaime.Lee 2021. 12. 31. 10:30Problem
Given the head of a singly linked list, return the middle node of the linked list.
If there are two middle nodes, return the second middle node.
Example 1:
Input: head = [1,2,3,4,5]
Output: [3,4,5]
Explanation: The middle node of the list is node 3.
Example 2:
Input: head = [1,2,3,4,5,6]
Output: [4,5,6]
Explanation: Since the list has two middle nodes with values 3 and 4, we return the second one.
Constraints:
- The number of nodes in the list is in the range [1, 100].
- 1 <= Node.val <= 100
Solution
단일 연결 리스트가 주어졌을 때 가운데 노드를 반환하는 문제입니다. 가운데 두 노드가 존재할 때는 뒤에있는 노드를 반환해야 합니다.
연결 리스트계 문제 중 가장 기본이 되는 문제라고 할 수 있는데 두 개의 포인터를 이용해 하나는 빠르게 하나는 천천히 이동한 뒤 천천히 이동한 노드 또는 그 다음 노드를 반환하면 됩니다.
import io.lcalmsky.leetcode.ListNode;
public class Solution {
public ListNode middleNode(ListNode head) {
ListNode slow = head;
ListNode fast = head;
while (fast.next != null && fast.next.next != null) {
fast = fast.next.next;
slow = slow.next;
}
return fast.next == null ? slow : slow.next;
}
}
Test
package io.lcalmsky.leetcode.middle_of_the_linked_list;
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, 4, 5), ListNode.of(3, 4, 5)),
() -> test(ListNode.of(1, 2, 3, 4, 5, 6), ListNode.of(4, 5, 6))
);
}
private void test(ListNode given, ListNode expected) {
// when
Solution solution = new Solution();
ListNode actual = solution.middleNode(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
1010. Pairs of Songs With Total Durations Divisible by 60 (0) | 2022.01.03 |
---|---|
1026. Maximum Difference Between Node and Ancestor (0) | 2022.01.02 |
[LeetCode - Daily Challenge] 476. Number Complement (0) | 2021.12.29 |
[LeetCode - Daily Challenge] 973. K Closest Points to Origin (0) | 2021.12.28 |
[LeetCode - Daily Challenge] 227. Basic Calculator II (0) | 2021.12.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 함께 자라기 후기
- Linux
- 스프링 부트
- 스프링 데이터 jpa
- proto3
- @ManyToOne
- JSON
- 스프링 부트 튜토리얼
- intellij
- 함께 자라기
- QueryDSL
- 알고리즘
- Spring Boot Tutorial
- Spring Boot
- 클린 아키텍처
- Java
- 헥사고날 아키텍처
- leetcode
- Spring Data JPA
- Jackson
- gRPC
- spring boot app
- spring boot jwt
- spring boot application
- 스프링 부트 애플리케이션
- Spring Boot JPA
- 스프링부트
- 스프링 부트 회원 가입
- r
- 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 | 31 |
글 보관함