LeetCode(46):全排列

Medium!

题目描述:

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

示例:

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

解题思路:

这道题是求全排列问题,给的输入数组没有重复项,这跟之前的那道Combinations 组合项 和类似,解法基本相同,但是不同点在于那道不同的数字顺序只算一种,是一道典型的组合题,而此题是求全排列问题,还是用递归DFS来求解。这里我们需要用到一个visited数组来标记某个数字是否访问过,然后DFS递归函数循环应从头开始,而不是从level开始,这是和Combinations 组合项 不同的地方,其余思路大体相同。

C++解法一:

 1 class Solution {
 2 public:
 3     vector<vector<int> > permute(vector<int> &num) {
 4         vector<vector<int> > res;
 5         vector<int> out;
 6         vector<int> visited(num.size(), 0);
 7         permuteDFS(num, 0, visited, out, res);
 8         return res;
 9     }
10     void permuteDFS(vector<int> &num, int level, vector<int> &visited, vector<int> &out, vector<vector<int> > &res) {
11         if (level == num.size()) res.push_back(out);
12         else {
13             for (int i = 0; i < num.size(); ++i) {
14                 if (visited[i] == 0) {
15                     visited[i] = 1;
16                     out.push_back(num[i]);
17                     permuteDFS(num, level + 1, visited, out, res);
18                     out.pop_back();
19                     visited[i] = 0;
20                 }
21             }
22         }
23     }
24 };

还有一种递归的写法,更简单一些,这里是每次交换num里面的两个数字,经过递归可以生成所有的排列情况,代码如下。

C++解法二:

 1 class Solution {
 2 public:
 3     vector<vector<int> > permute(vector<int> &num) {
 4         vector<vector<int> > res;
 5         permuteDFS(num, 0, res);
 6         return res;
 7     }
 8     void permuteDFS(vector<int> &num, int start, vector<vector<int> > &res) {
 9         if (start >= num.size()) res.push_back(num);
10         for (int i = start; i < num.size(); ++i) {
11             swap(num[start], num[i]);
12             permuteDFS(num, start + 1, res);
13             swap(num[start], num[i]);
14         }
15     }
16 };

最后再来看一种方法,这种方法是CareerCup书上的方法,也挺不错的,这道题是思想是这样的:

当n=1时,数组中只有一个数a1,其全排列只有一种,即为a1

当n=2时,数组中此时有a1a2,其全排列有两种,a1a2和a2a1,那么此时我们考虑和上面那种情况的关系,我们发现,其实就是在a1的前后两个位置分别加入了a2

当n=3时,数组中有a1a2a3,此时全排列有六种,分别为a1a2a3, a1a3a2, a2a1a3, a2a3a1, a3a1a2, 和 a3a2a1。那么根据上面的结论,实际上是在a1a2和a2a1的基础上在不同的位置上加入a3而得到的。

_ a_ a_ : a3a1a2, a1a3a2, a1a2a3

_ a_ a_ : a3a2a1, a2a3a1, a2a1a3

C++解法三:

 1 class Solution {
 2 public:
 3     vector<vector<int> > permute(vector<int> &num) {
 4         if (num.empty()) return vector<vector<int> >(1, vector<int>());
 5         vector<vector<int> > res;
 6         int first = num[0];
 7         num.erase(num.begin());
 8         vector<vector<int> > words = permute(num);
 9         for (auto &a : words) {
10             for (int i = 0; i <= a.size(); ++i) {
11                 a.insert(a.begin() + i, first);
12                 res.push_back(a);
13                 a.erase(a.begin() + i);
14             }
15         }
16         return res;
17     }
18 };

原文地址:https://www.cnblogs.com/ariel-dreamland/p/9143188.html

时间: 2024-11-08 20:00:14

LeetCode(46):全排列的相关文章

[LeetCode] 46. 全排列(回溯)

题目 给定一个没有重复数字的序列,返回其所有可能的全排列. 示例: 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1]] 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/permutations 著作权归领扣网络所有.商业转载请联系官方授权,非商业转载请注明出处. 题解 回溯 使用位掩码数组的方式可以模拟集合拿出放入,以处理int[] num的拿出放入

LeetCode 46. 全排列(Permutations)

题目描述 给定一个没有重复数字的序列,返回其所有可能的全排列. 示例: 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 解题思路 回溯法,从第一个数开始,依次与此位置向后的每一个位置交换得到新序列,然后递归向后重复此动作,在得到某位置开头的所有序列后要把交换后的序列复原. 代码 1 class Solution { 2 public: 3 vector<vector<int>> per

[Leetcode 46]全排列 Permutations 递归

[题目] Given a collection of distinct integers, return all possible permutations. 数组的组合情况. Input: [1,2,3] Output: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] [思路] 求子集,排列组合的数组题有固定模板. [代码] class Solution { public List<List<Integer>> p

LeetCode:全排列【46】

LeetCode:全排列[46] 题目描述 给定一个没有重复数字的序列,返回其所有可能的全排列. 示例: 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 题目分析 首先题目给了一个没有重复数字的序列,它的全排列也一定不含重复数字.我们采用回溯框架法快速解题. 我们就简单思考一个问题,每个排列的第一个元素是如何生成的! 我们从左往右,首先我们将1加入tmpList(临时存储排列的线性表)中,此后再由它

DFS解法的两道题 Leetcode 46 Permutations &amp; Leetcode 78 Subset

Leetcode 78 Subset Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be in non-descending order. The solution set must not contain duplicate subsets. For example,If S = [1,2,3], a solution is: [ [3], [1

[leetcode] 47. 全排列 II

47. 全排列 II 比上一个题多了个重复性 与46. 全排列完全一样的代码... class Solution { // 当没有下一个排列时return false public boolean nextPermutation(int[] nums) { if (nums.length == 1) { return false; } int p = -1; for (int i = nums.length - 2; i >= 0; i--) { if (nums[i] < nums[i +

LeetCode:全排列II【47】

LeetCode:全排列II[47] 参考自天码营题解:https://www.tianmaying.com/tutorial/LC47 题目描述 给定一个可包含重复数字的序列,返回所有不重复的全排列. 示例: 输入: [1,1,2] 输出: [ [1,1,2], [1,2,1], [2,1,1] ] 题目分析 这道题与上一道全排列I的区别在于,这一次给的序列可以包含重复元素. 1.那此时我们怎么判断当前元素是否使用过呢? 我们使用BitMap(位图)技术建立一个和序列长度相等的布尔数组,记录每

46. 全排列

46. 全排列 题目描述 给定一个没有重复数字的序列,返回其所有可能的全排列. 示例: 输入: [1,2,3] 输出: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 分析 我们从前往后,一位一位枚举,每次选择一个没有被使用过的数. 选好之后,将该数的状态改成"已被使用",同时将该数记录在相应位置上,然后递归. 递归返回时,不要忘记将该数的状态改成"未被使用",并将该数从相应位置上删除. 贴出代码 c

LeetCode 46 Permutations(全排列问题)

题目链接:https://leetcode.com/problems/permutations/?tab=Description Problem:给出一个数组(数组中的元素均不相同),求出这个数组能够产生的所有全排列 采用递归算法,传入参数 List<List<Integer>> list, List<Integer> tempList, int[] nums, boolean[] used 其中list保存最终结果 tempList保存其中一个全排列 nums为最初的

LeetCode 46 Permutations (全排列)

Given a collection of distinct numbers, return all possible permutations. For example, [1,2,3] have the following permutations: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ] 题目链接:https://leetcode.com/problems/permutations/ 题目大意:求全排列 题目分析:求