티스토리 뷰
Problem
Given the head of a singly linked list, return true if it is a palindrome.
Example 1:
Input: head = [1,2,2,1]
Output: true
Example 2:
Input: head = [1,2]
Output: false
Constraints:
- The number of nodes in the list is in the range [1, 10^5].
- 0 <= Node.val <= 9
Follow up: Could you do it in O(n) time and O(1) space?
Solution
연결 리스트가 주어졌을 때 연결 리스트가 회문(기러기 토마토 스위스 인도인 별똥별 우영우)인지 확인하는 문제입니다.
import io.lcalmsky.leetcode.ListNode;
public class Solution {
private ListNode left;
public boolean isPalindrome(ListNode head) {
left = head;
return helper(head);
}
private boolean helper(ListNode right) {
if (right == null) {
return true;
}
boolean rightResult = helper(right.next);
if (!rightResult) {
return false;
}
boolean equals = left.val == right.val;
left = left.next;
return equals;
}
}
재귀호출을 이용하면 노드 끝까지 간 뒤 첫 노드와 비교하고 결과를 반환하고, 그 이후로는 첫 노드는 뒤로, 맨 끝 노드는 앞으로 이동하면서 비교하여 결과를 구할 수 있습니다.
Test
package io.lcalmsky.leetcode.palindrome_linked_list;
import static org.junit.jupiter.api.Assertions.*;
import io.lcalmsky.leetcode.ListNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
public void givenListNode_whenCheckIsPalindrome_thenCorrect() {
assertAll(
() -> test(ListNode.of(1, 2), false),
() -> test(ListNode.of(1, 2, 2, 1), true)
);
}
private void test(ListNode given, boolean expected) {
// when
Solution palindromeLinkedList = new Solution();
boolean actual = palindromeLinkedList.isPalindrome(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
326. Power of Three (0) | 2022.08.27 |
---|---|
342. Power of Four (0) | 2022.08.26 |
871. Minimum Number of Refueling Stops (0) | 2022.08.20 |
1338. Reduce Array Size to The Half (0) | 2022.08.19 |
804. Unique Morse Code Words (0) | 2022.08.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링부트
- 스프링 부트 회원 가입
- Linux
- r
- JPA
- Spring Boot
- proto3
- 스프링 데이터 jpa
- leetcode
- 스프링 부트
- 함께 자라기 후기
- 스프링 부트 튜토리얼
- 헥사고날 아키텍처
- gRPC
- intellij
- Spring Data JPA
- Spring Boot Tutorial
- 함께 자라기
- 스프링 부트 애플리케이션
- QueryDSL
- Java
- 클린 아키텍처
- Spring Boot JPA
- @ManyToOne
- 알고리즘
- Jackson
- JSON
- spring boot application
- spring boot jwt
- spring boot app
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함