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

leetcode - Permutations II

时间:2014-10-23 12:29:48      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   for   sp   on   cti   

Given a collection of numbers that might contain duplicates, return all possible unique permutations.

For example,
[1,1,2] have the following unique permutations:
[1,1,2][1,2,1], and [2,1,1].

class Solution {
public:
    std::vector<std::vector<int> > permuteUnique(std::vector<int> &num) {
		std::set<std::vector<int>> s;
		std::vector<std::vector<int>> res;
		std::sort(num.begin(),num.end());
		do
		{
			s.insert(num);
		} while (std::next_permutation(num.begin(),num.end()));
		for(std::set<std::vector<int>>::iterator it = s.begin(); it != s.end(); it++)
		{
			res.push_back(*it);
		}
		return res;
    }
};


leetcode - Permutations II

标签:style   color   io   os   ar   for   sp   on   cti   

原文地址:http://blog.csdn.net/akibatakuya/article/details/40394055

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