forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_31.java
46 lines (40 loc) · 1.53 KB
/
_31.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.fishercoder.solutions;
public class _31 {
public static class Solution1 {
/**
* Leetcode has a very good article to illustrate this problem and with animation:
* https://leetcode.com/articles/next-permutation/
* 1. if the array is already in decrementing order, then there's no next larger permutation possible.
* 2. if not, start from the end of the array, find the first pair of numbers that break the decrementing order
* 3. then from that index going to the right again, find the element that is closest bigger than this number, swap them
* 4. reverse the right half of this array after this index
*/
public void nextPermutation(int[] nums) {
int i = nums.length - 2;
while (i >= 0 && nums[i] >= nums[i + 1]) {
i--;
}
if (i >= 0) {
int j = nums.length - 1;
while (j >= 0 && nums[i] >= nums[j]) {
j--;
}
swap(nums, i, j);
}
reverse(nums, i + 1);
}
private void reverse(int[] nums, int start) {
int end = nums.length - 1;
while (start <= end) {
int tmp = nums[start];
nums[start++] = nums[end];
nums[end--] = tmp;
}
}
private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
}
}
}