首页 > 其他 > 详细

[LeetCode]Next Permutation

时间:2014-06-04 23:47:00      阅读:450      评论:0      收藏:0      [点我收藏+]

Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.

If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).

The replacement must be in-place, do not allocate extra memory.

Here are some examples. Inputs are in the left-hand column and its corresponding outputs are in the right-hand column.
1,2,3 → 1,3,2
3,2,1 → 1,2,3
1,1,5 → 1,5,1

刚开始没看懂,后面查看网上资料才搞懂,就是转化为按照字典顺序排列的后面的一个排列

如:15467543应该为15473456

class Solution {
public:
    void nextPermutation(vector<int> &num) {
       int i, j;
	i = num.size() - 2;
	j = num.size() - 1;
	//从后往前找,先找到不满足非降序的第一个数;
	while(i >= 0 && num[i] >= num[i + 1])
	{
		i--;
	}
	//从后往前找,找到大于上面找到的非降序的第一个数
	while(j >= 0 && num[j] <= num[i])
	{
		j--;
	}
	if(i < j)
	{
		int temp;
		temp = num[j];
		num[j] = num[i];
		num[i] = temp;
		//swap(num[i], num[j]);
		sort(num.begin() + i + 1, num.end());
	}
	else
	{
		reverse(num.begin(), num.end());
	}
    }
};


[LeetCode]Next Permutation,布布扣,bubuko.com

[LeetCode]Next Permutation

原文:http://blog.csdn.net/jet_yingjia/article/details/27102157

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!