-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNext Permutation.java
More file actions
39 lines (38 loc) · 1.2 KB
/
Next Permutation.java
File metadata and controls
39 lines (38 loc) · 1.2 KB
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
/*
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
*/
public class Solution {
public void nextPermutation(int[] num) {
for (int i = num.length-1; i > 0; i--) {
if (num[i] > num[i-1]) {
for (int j = num.length-1; j >= i; j--) {
if (num[j] > num[i-1]) {
num[i-1] = num[i-1] ^ num[j];
num[j] = num[i-1] ^ num[j];
num[i-1] = num[i-1] ^ num[j];
break;
}
}
swap(num, i, num.length-1);
}
}
swap(num, 0, num.length-1);
}
private void swap(int[] num, int start, int end) {
if (start == end) return ;
int len = end - start;
for (int i = 0; i <= len / 2; i++) {
if (num[start+i] != num[end-i]) {
num[start+i] = num[start+i] ^ num[end-i];
num[end-i] = num[start+i] ^ num[end-i];
num[start+i] = num[start+i] ^ num[end-i];
}
}
}
}