forked from TonnyL/Windary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NextPermutation.java
44 lines (40 loc) · 1.19 KB
/
NextPermutation.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
/**
* Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
* <p>
* If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).
* <p>
* The replacement must be in-place, do not allocate extra memory.
* <p>
* 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
* <p>
* Accepted.
*/
public class NextPermutation {
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 (nums[j] <= nums[i]) {
j--;
}
swap(nums, i, j);
}
reverse(nums, i + 1, nums.length - 1);
}
private void swap(int[] nums, int i, int j) {
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
}
private void reverse(int[] nums, int i, int j) {
while (i < j) {
swap(nums, i++, j--);
}
}
}