forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0031_next_permutation.rs
86 lines (77 loc) · 2.3 KB
/
n0031_next_permutation.rs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* [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 <a href="http://en.wikipedia.org/wiki/In-place_algorithm" target="_blank">in-place</a> 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<br />
* 3,2,1 → 1,2,3<br />
* 1,1,5 → 1,5,1
*
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn next_permutation(nums: &mut Vec<i32>) {
let len = nums.len();
let mut i = (len - 1) as i32;
let mut prev = -1;
// find the decrement digit from end
while i >= 0 {
if nums[i as usize] < prev {
break;
}
prev = nums[i as usize];
i -= 1;
}
let mut j = len - 1;
// find the first digit larger than nums[i]
// we can do binary search here to make a slightly improvement
if i >= 0 {
while j > (i as usize) {
if nums[j] > nums[i as usize] {
nums.swap(i as usize, j);
break;
}
j -= 1;
}
}
let slice = &mut nums[((i+1) as usize)..len];
slice.reverse();
}
}
// submission codes end
/*
// a clean solution (from leetcode submissions)
impl Solution {
pub fn next_permutation(a: &mut Vec<i32>) {
let n = a.len();
if let Some(i) = (1..n).rev().find(|&i| a[i - 1] < a[i]) {
let j = (i..n).rev().find(|&j| a[i - 1] < a[j])
.unwrap();
a.swap(i - 1, j);
a[i..].reverse();
} else {
a.reverse();
}
}
}
*/
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_31() {
let mut vec1 = vec![1,2,3,4,5];
Solution::next_permutation(&mut vec1);
assert_eq!(vec1, vec![1,2,3,5,4]);
let mut vec2 = vec![5,4,3,2,1];
Solution::next_permutation(&mut vec2);
assert_eq!(vec2, vec![1,2,3,4,5]);
}
}