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

leetcode Permutations II

时间:2014-10-29 01:55:09      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   ar   for   sp   

题目:和上一题一样,就是这时候给定的数字可能有重复。

做法:只要将num排好序,然后判断如果当前的值等于前一个的话,那么就跳过,就不会有重复的人。果然是AC了。

 1 class Solution {
 2 public:
 3     vector<vector<int> > permuteUnique(vector<int> &num) 
 4     {
 5         vector<vector<int> > ans;
 6         if (num.size() == 1)
 7             {ans.push_back(num);return ans;}
 8         
 9         vector<vector<int> > post;
10         vector<int> tmp;
11         vector<int> cur;
12         sort(num.begin(), num.end()); // 排好序
13         for (int i = 0; i < num.size(); ++i)
14         {
15             tmp = num;
16             if (i - 1 >= 0 && tmp[i] == tmp[i - 1]) continue; //如果重复数字就跳过
17             tmp.erase(tmp.begin() + i);
18             post = permuteUnique(tmp);
19             for (int j = 0; j < post.size(); ++j)
20             {
21                 cur = post[j];
22                 cur.insert(cur.begin(), num[i]);
23                 ans.push_back(cur);
24             }
25         }
26         return ans;   
27     }
28 };

这个人的也是递归。这个人的好几种。有时间了再好好看看。

 

leetcode Permutations II

标签:style   blog   http   io   color   os   ar   for   sp   

原文地址:http://www.cnblogs.com/higerzhang/p/4058394.html

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