Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.code
If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).blog
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
it
这个最开始我比较不能理解题目的意思,后来才明白表示两个排序之间没有其余的排序的意思是,好比1,2,3,4下一个排序是1,2,4,3 --> 1,3,2,4 --> 1,3,4,2 --> 1,4,2,3 -->.....io
就是说第二个排序组成的连续数字,比前面的大,而且中间没有其余的组合,若是已是4,3,2,1了,那么下一个就是1,2,3,4即回到开头。class
咱们来研究一下上面[1,2,3,4]的排序过程,好比比1,2,3,4大的是1,2,4,3怎么出来的呢?再看看1,3,4,2 ---> 1,4,2,3 call
1.找到nums[i] > nums[i-1]next
2.找出i-nums.size()-1之间比nums[i-1]大的最小值,交换这个值与nums[i-1]sort
3.对i-1到nums.size()-1之间的元素进行排序di
class Solution { public: void nextPermutation(vector<int>& nums) { int end = nums.size()-1; while( end > 0 ){ if( nums[end] > nums[end-1] ){ break; } else{ end--; } } if( end == 0 ){ sort(nums.begin(),nums.end()); } else{ int min = nums[end]; int index = end; for( int i = nums.size()-1; i > end; i-- ){ if( nums[i] < min && nums[i] > nums[end-1] ){ min = nums[i]; index = i; } } swap(nums[index],nums[end-1]); sort(nums.begin()+end,nums.end()); } } };