티스토리 뷰
Problem
Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.
The first node is considered odd, and the second node is even, and so on.
Note that the relative order inside both the even and odd groups should remain as it was in the input.
You must solve the problem in O(1) extra space complexity and O(n) time complexity.
Example 1:
Input: head = [1,2,3,4,5]
Output: [1,3,5,2,4]
Example 2:
Input: head = [2,1,3,5,6,4,7]
Output: [2,3,6,7,1,5,4]
Constraints:
- The number of nodes in the linked list is in the range [0, 10^4].
- -10^6 <= Node.val <= 10^6
Solution
단일 연결 리스트의 head가 주어질 때, 모든 홀수 인덱스를 모든 짝수 인덱스 뒤로 다시 정렬하는 문제입니다.
package io.lcalmsky.leetcode.odd_even_linked_list;
import io.lcalmsky.leetcode.ListNode;
public class Solution {
public ListNode oddEvenList(ListNode head) {
if (head == null || head.next == null) {
return head;
}
ListNode odd = head;
ListNode even = head.next;
ListNode evenHead = even;
while (even != null && even.next != null) {
odd.next = even.next;
even.next = even.next.next;
odd = odd.next;
even = even.next;
}
odd.next = evenHead;
return head;
}
}
Test
package io.lcalmsky.leetcode.odd_even_linked_list;
import io.lcalmsky.leetcode.ListNode;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(ListNode.of(1, 2, 3, 4, 5), ListNode.of(1, 3, 5, 2, 4)),
() -> test(ListNode.of(2, 1, 3, 5, 6, 4, 7), ListNode.of(2, 3, 6, 7, 1, 5, 4))
);
}
private void test(ListNode head, ListNode expected) {
Solution solution = new Solution();
ListNode actual = solution.oddEvenList(head);
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode] 230. Kth Smallest Element in a BST (0) | 2023.06.29 |
---|---|
[LeetCode] 334. Increasing Triplet Subsequence (0) | 2023.06.28 |
[LeetCode] 322. Coin Change (0) | 2023.06.26 |
[LeetCode] 1027. Longest Arithmetic Subsequence (0) | 2023.06.23 |
188. Best Time to Buy and Sell Stock IV (1) | 2022.09.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- leetcode
- JPA
- intellij
- 스프링 부트 애플리케이션
- Jackson
- @ManyToOne
- JSON
- 스프링 데이터 jpa
- 알고리즘
- proto3
- Spring Boot Tutorial
- Spring Boot
- 스프링 부트 회원 가입
- 함께 자라기
- spring boot jwt
- r
- QueryDSL
- 스프링 부트 튜토리얼
- Java
- 클린 아키텍처
- Linux
- 헥사고날 아키텍처
- Spring Boot JPA
- spring boot app
- Spring Data JPA
- 함께 자라기 후기
- spring boot application
- 스프링부트
- gRPC
- 스프링 부트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함