[LintCode] 带重复元素的排列

简介: 递归实现: 1 class Solution { 2 public: 3 /** 4 * @param nums: A list of integers. 5 * @return: A list of unique permutations.

递归实现:

 1 class Solution {
 2 public:
 3     /**
 4      * @param nums: A list of integers.
 5      * @return: A list of unique permutations.
 6      */
 7     vector<vector<int> > permuteUnique(vector<int> &nums) {
 8         // write your code here
 9         sort(nums.begin(), nums.end());
10         vector<vector<int> > permutations;
11         if (nums.empty()) return permutations;
12         permutate(nums, 0, permutations);
13         return permutations;
14     }
15 private:
16     void permutate(vector<int> nums, int start, vector<vector<int> >& permutations) {
17         if (start == nums.size()) {
18             permutations.push_back(nums);
19             return;
20         }
21         for (int i = start; i < (int)nums.size(); i++) {
22             if (i == start || nums[i] != nums[start]) {
23                 swap(nums[start], nums[i]);
24                 permutate(nums, start + 1, permutations);
25             }
26         }
27     }
28 };

非递归实现(基于nextPermutation):

 1 class Solution {
 2 public:
 3     /**
 4      * @param nums: A list of integers.
 5      * @return: A list of unique permutations.
 6      */
 7     vector<vector<int> > permuteUnique(vector<int> &nums) {
 8         // write your code here
 9         vector<vector<int> > permutations;
10         if (nums.empty()) return permutations;
11         vector<int> copy(nums.begin(), nums.end());
12         nextPermutation(nums);
13         permutations.push_back(nums);
14         while (nums != copy) {
15             nextPermutation(nums);
16             permutations.push_back(nums);
17         }
18         return permutations;
19     }
20 private:
21     void nextPermutation(vector<int>& nums) {
22         int k = -1, n = nums.size();
23         for (int i = n - 2; i >= 0; i--) {
24             if (nums[i] < nums[i + 1]) {
25                 k = i;
26                 break;
27             }
28         }
29         if (k == -1) {
30             reverse(nums.begin(), nums.end());
31             return;
32         }
33         int l;
34         for (int i = n - 1; i > k; i--) {
35             if (nums[i] > nums[k]) {
36                 l = i;
37                 break;
38             }
39         }
40         swap(nums[l], nums[k]);
41         reverse(nums.begin() + k + 1, nums.end());
42     }
43 };

 

目录
相关文章
|
8月前
|
索引
【力扣】217. 存在重复元素、219. 存在重复元素 II
【力扣】217. 存在重复元素、219. 存在重复元素 II
C#基础⑥.2——数组(冒泡排序、求最值、数组排序、forr反转)
一次语文测试后,老师让班长统计每一个学生的成绩并计算全班(全班共5人)的平均成绩,然后把所有成绩显示出来。
|
8月前
leetcode:217. 存在重复元素(先排序再比较邻位)
leetcode:217. 存在重复元素(先排序再比较邻位)
37 0
|
8月前
|
算法
【剑指offer】-字符串的排列-26/67
【剑指offer】-字符串的排列-26/67
|
算法 索引
LeetCode 算法 | 数组中有重复元素吗(II)?
LeetCode 算法 | 数组中有重复元素吗(II)?
|
搜索推荐 Java
Leecode912. 排序数组
Leecode912. 排序数组
61 0
【C剑指offer】03数组中的重复元素
【C剑指offer】03数组中的重复元素
84 0
【C剑指offer】03数组中的重复元素
|
Java C++
每日一题——349. 两个数组的交集
每日一题——349. 两个数组的交集
122 0