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

leetcode - Permutations

时间:2014-10-23 12:33:50      阅读:223      评论:0      收藏:0      [点我收藏+]

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

Given a collection of 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], and [3,2,1].

class Solution {
public:
    std::vector<std::vector<int> > permute(std::vector<int> &num) {
		std::vector<std::vector<int>> res;
		std::sort(num.begin(),num.end());
		do
		{
			res.push_back(num);
		} while (std::next_permutation(num.begin(),num.end()));
		return res;
    }
};


leetcode - Permutations

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

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

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