当前位置:网站首页>LeetCode刷题系列 -- 46. 全排列

LeetCode刷题系列 -- 46. 全排列

2022-08-11 05:53:00 在河之洲木水

给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。

示例 1:

输入:nums = [1,2,3]
输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
示例 2:

输入:nums = [0,1]
输出:[[0,1],[1,0]]
示例 3:

输入:nums = [1]
输出:[[1]]
 

提示:

1 <= nums.length <= 6
-10 <= nums[i] <= 10
nums 中的所有整数 互不相同

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/permutations
 

思路:

此题可以用回溯法

java代码:

class Solution {
 public List<List<Integer>> permute(int[] nums) {
        List<List<Integer>> result = new ArrayList<>();

        fullPermutation(nums, result, new LinkedList<>());

        return result;
    }

    public void fullPermutation(int[] nums, List<List<Integer>> result, List<Integer> subList) {

        // 说明本次排列已经将所有元素排完
        if (subList.size() == nums.length) {
            result.add(new LinkedList<>(subList));
            return;
        }

        for (int num : nums) {
            if (subList.contains(num)) {
                continue;
            }
            subList.add(num);
            fullPermutation(nums, result, subList);
            subList.remove(subList.size() - 1);
        }

    }
}

原网站

版权声明
本文为[在河之洲木水]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_33775774/article/details/126276570