首页 > 代码库 > [LeetCode]Next Permutation
[LeetCode]Next Permutation
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()); } } };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。