File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change
1
+ use alloc:: boxed:: Box ;
1
2
use alloc:: vec:: Vec ;
2
3
use std:: fmt;
3
4
use std:: iter:: once;
@@ -33,8 +34,8 @@ enum PermutationState {
33
34
Buffered { k : usize , min_n : usize } ,
34
35
/// All values from the iterator are known so `n` is known.
35
36
Loaded {
36
- indices : Vec < usize > ,
37
- cycles : Vec < usize > ,
37
+ indices : Box < [ usize ] > ,
38
+ cycles : Box < [ usize ] > ,
38
39
} ,
39
40
/// No permutation left to generate.
40
41
End ,
89
90
} else {
90
91
let n = * min_n;
91
92
let prev_iteration_count = n - * k + 1 ;
92
- let mut indices: Vec < _ > = ( 0 ..n) . collect ( ) ;
93
- let mut cycles: Vec < _ > = ( n - k..n) . rev ( ) . collect ( ) ;
93
+ let mut indices: Box < [ _ ] > = ( 0 ..n) . collect ( ) ;
94
+ let mut cycles: Box < [ _ ] > = ( n - k..n) . rev ( ) . collect ( ) ;
94
95
// Advance the state to the correct point.
95
96
for _ in 0 ..prev_iteration_count {
96
97
if advance ( & mut indices, & mut cycles) {
You can’t perform that action at this time.
0 commit comments