-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLC31.java
58 lines (48 loc) · 1.64 KB
/
LC31.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
47
48
49
50
51
52
53
54
55
56
57
58
/*31. 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 and use only constant 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 */
/*Complexity Analysis
Time complexity : O(n). In worst case, only two scans of the whole array are needed.
Space complexity : O(1). No extra space is used. In place replacements are done.*/
public class Solution
{
public void nextPermutation(int[] nums)
{
int i = nums.length - 2;
while (i >= 0 && nums[i + 1] <= nums[i]) // finding first decreasing element
{
i--;
}
if (i >= 0)
{
int j = nums.length - 1;
while (j >= 0 && nums[j] <= nums[i]) // finding number just larger than first decreasing element found at 'i'
{
j--;
}
swap(nums, i, j); // swap the ith and jth element
}
reverse(nums, i + 1); // reverse the element
}
private void reverse(int[] nums, int start)
{
int i = start, j = nums.length - 1;
while (i < j)
{
swap(nums, i, j);
i++;
j--;
}
}
private void swap(int[] nums, int i, int j)
{
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
}