티스토리 뷰
Problem
Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order.
Example 1:
Input: nums = [1,2,3]
Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
Example 2:
Input: nums = [0,1]
Output: [[0,1],[1,0]]
Example 3:
Input: nums = [1]
Output: [[1]]
Constraints:
- 1 <= nums.length <= 6
- -10 <= nums[i] <= 10
- All the integers of nums are unique.
Solution
고유한 정수로 이루어진 배열이 주어질 때 가능한 모든 조합의 순열을 반환하는 문제입니다.
정답의 순서는 상관 없습니다.
dfs를 이용해 풀 수 있습니다.
package io.lcalmsky.leetcode.permutations;
import java.util.ArrayList;
import java.util.List;
public class Solution {
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> result = new ArrayList<>();
dfs(0, nums, result);
return result;
}
private void dfs(int start, int[] nums, List<List<Integer>> result) {
if (start == nums.length - 1) {
List<Integer> list = new ArrayList<>();
for (int num : nums) {
list.add(num);
}
result.add(list);
return;
}
for (int i = start; i < nums.length; i++) {
swap(nums, i, start);
dfs(start + 1, nums, result);
swap(nums, i, start);
}
}
private void swap(int[] nums, int i, int start) {
int tmp = nums[i];
nums[i] = nums[start];
nums[start] = tmp;
}
}
Test
package io.lcalmsky.leetcode.permutations;
import org.junit.jupiter.api.Test;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertTrue;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(new int[]{1, 2, 3}, List.of(List.of(1, 2, 3), List.of(1, 3, 2), List.of(2, 1, 3), List.of(2, 3, 1), List.of(3, 1, 2), List.of(3, 2, 1))),
() -> test(new int[]{0, 1}, List.of(List.of(0, 1), List.of(1, 0))),
() -> test(new int[]{1}, List.of(List.of(1)))
);
}
private void test(int[] nums, List<List<Integer>> expected) {
Solution solution = new Solution();
List<List<Integer>> actual = solution.permute(nums);
Set<List<Integer>> expectedSet = new HashSet<>(expected);
Set<List<Integer>> actualSet = new HashSet<>(actual);
assertTrue(expectedSet.containsAll(actualSet));
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode] 78. Subsets (0) | 2023.07.02 |
---|---|
[LeetCode] 240. Search a 2D Matrix II (0) | 2023.07.01 |
[LeetCode] 230. Kth Smallest Element in a BST (0) | 2023.06.29 |
[LeetCode] 334. Increasing Triplet Subsequence (0) | 2023.06.28 |
[LeetCode] 328. Odd Even Linked List (0) | 2023.06.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링 부트 튜토리얼
- leetcode
- spring boot application
- Linux
- proto3
- Spring Boot Tutorial
- 알고리즘
- Jackson
- JSON
- @ManyToOne
- 함께 자라기
- QueryDSL
- 스프링 데이터 jpa
- intellij
- gRPC
- Spring Boot JPA
- r
- 클린 아키텍처
- JPA
- 스프링 부트
- spring boot app
- Java
- Spring Boot
- Spring Data JPA
- 헥사고날 아키텍처
- spring boot jwt
- 스프링 부트 회원 가입
- 함께 자라기 후기
- 스프링부트
- 스프링 부트 애플리케이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함