티스토리 뷰
Problem
Given an array, rotate the array to the right by k steps, where k is non-negative.
Example 1:
Input: nums = [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]
Explanation:
rotate 1 steps to the right: [7,1,2,3,4,5,6]
rotate 2 steps to the right: [6,7,1,2,3,4,5]
rotate 3 steps to the right: [5,6,7,1,2,3,4]
Example 2:
Input: nums = [-1,-100,3,99], k = 2
Output: [3,99,-1,-100]
Explanation:
rotate 1 steps to the right: [99,-1,-100,3]
rotate 2 steps to the right: [3,99,-1,-100]
Constraints:
- 1 <= nums.length <= 10^5
- -2^31 <= nums[i] <= 2^31 - 1
- 0 <= k <= 10^5
Follow up:
- Try to come up with as many solutions as you can. There are at least three different ways to solve this problem.
- Could you do it in-place with O(1) extra space?
Solution
배열과 정수 k가 주어졌을 때 배열을 k만큼 오른쪽으로 회전시키는 문제입니다.
public class Solution {
public void rotate(int[] nums, int k) {
int length = nums.length;
if (k > length) { // (1)
k = k % length;
}
int index = length - k; // (2)
reverse(nums, 0, index - 1); // (3)
reverse(nums, index, length - 1); // (4)
reverse(nums, 0, length - 1); // (5)
}
private void reverse(int[] nums, int left, int right) {
if (nums == null || nums.length == 1) {
return;
}
while (left < right) {
int temp = nums[left];
nums[left] = nums[right];
nums[right] = temp;
left++;
right--;
}
}
}
- k를 배열의 길이로 나눈 나머지를 구합니다.
- 배열의 길이에서 k를 뺀 인덱스를 기준으로 설정합니다.
- 배열의 첫 번째부터 기준 인덱스까지의 원소를 뒤집어 줍니다.
- 배열의 기준 인덱스부터 끝까지의 원소를 뒤집어 줍니다.
- 배열 전체를 뒤집어 줍니다.
Test
package io.lcalmsky.leetcode.rotate_array;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void givenArray_whenRotateKStepsToRight_thenCorrect() {
assertAll(
() -> test(new int[]{1, 2, 3, 4, 5, 6, 7}, 3, new int[]{5, 6, 7, 1, 2, 3, 4}),
() -> test(new int[]{-1, -100, 3, 99}, 2, new int[]{3, 99, -1, -100})
);
}
private void test(int[] actual, int k, int[] expected) {
// when
Solution solution = new Solution();
solution.rotate(actual, k);
// then
assertArrayEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
438. Find All Anagrams in a String (0) | 2022.02.07 |
---|---|
121. Best Time to Buy and Sell Stock (0) | 2022.02.06 |
84. Largest Rectangle in Histogram (0) | 2022.02.04 |
1672. Richest Customer Wealth (0) | 2022.02.03 |
211. Design Add and Search Words Data Structure (0) | 2022.02.01 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- Spring Boot Tutorial
- 클린 아키텍처
- 스프링부트
- JPA
- JSON
- 함께 자라기
- proto3
- Jackson
- gRPC
- 스프링 부트 튜토리얼
- 스프링 부트 애플리케이션
- 함께 자라기 후기
- 스프링 데이터 jpa
- 스프링 부트 회원 가입
- 스프링 부트
- Java
- Spring Data JPA
- spring boot application
- Spring Boot
- r
- leetcode
- spring boot app
- spring boot jwt
- intellij
- Spring Boot JPA
- Linux
- 헥사고날 아키텍처
- QueryDSL
- @ManyToOne
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함