码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-46-全排列

时间:2019-06-09 00:47:41      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:时间复杂度   contains   com   ret   java实现   continue   nta   size   exit   

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

示例:

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

Java实现:

class Solution {

    /*

   time complexity: O(n!)  space complexity : O(n)

   时间复杂度不懂的看这: https://www.1point3acres.com/bbs/thread-117602-1-1.html

   递归法解本题  

   */


   public List<List<Integer>> permute(int[] nums) {

       List<List<Integer>> res = new ArrayList<>();

       //边界条件判断

       if(nums == null || nums.length == 0) return res;

       helper(res, new ArrayList<>(), nums);

       return res;

   }

   

   //辅助函数  res, list, nums数组

   public static void helper(List<List<Integer>> res, List<Integer> list, int[] nums){

       //res添加list

       if(list.size() == nums.length){

           res.add(new ArrayList<>(list));

           return ;

       }

       for(int i = 0; i < nums.length ; i++){

           //ArrayList 的list中是否包含nums的当前元素

           if(list.contains(nums[i])) continue;  //O(n)

           //否则看看下一个是否满足要求

           list.add(nums[i]);

           helper(res, list, nums);

           list.remove(list.size() - 1);

       }      

  }

}

leetcode-46-全排列

标签:时间复杂度   contains   com   ret   java实现   continue   nta   size   exit   

原文地址:https://www.cnblogs.com/fightingcode/p/10992066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!