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

[LeetCode]Next Permutation

时间:2014-06-05 00:08:22      阅读:255      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!