LeetCode46. 全排列

给定一个 没有重复 数字的序列,返回其所有可能的全排列。

示例:

输入: [1,2,3]
输出:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]

class Solution {
    public List<List<Integer>> permute(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        List<Integer> list = new ArrayList<>();
        for(int num:nums)
            list.add(num);
        int n = nums.length;
        process(nums, list, res, n, 0);
        return res;
    }
    public void process(int[] nums,List<Integer>data,List<List<Integer>>res,int n,int first)
    {
        if(first == n)
            res.add(new ArrayList<Integer>(data));
        for(int i = first;i<n;i++)
        {
            Collections.swap(data, first, i);
            process(nums, data,res, n, first+1);
            Collections.swap(data, first, i);
        }
    }
}

 

posted @ 2021-03-26 09:23  γGama  阅读(20)  评论(0编辑  收藏  举报