forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths0059_spiral_matrix_ii.rs
87 lines (81 loc) · 2 KB
/
s0059_spiral_matrix_ii.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
87
/**
* [59] Spiral Matrix II
*
* Given a positive integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order.
*
* Example:
*
*
* Input: 3
* Output:
* [
* [ 1, 2, 3 ],
* [ 8, 9, 4 ],
* [ 7, 6, 5 ]
* ]
*
*
*/
pub struct Solution {}
// problem: https://leetcode.com/problems/spiral-matrix-ii/
// discuss: https://leetcode.com/problems/spiral-matrix-ii/discuss/?currentPage=1&orderBy=most_votes&query=
// submission codes start here
impl Solution {
pub fn generate_matrix(n: i32) -> Vec<Vec<i32>> {
let mut res = vec![vec![0; n as usize]; n as usize];
if n < 1 {
return res;
}
let (mut x_min, mut x_max, mut y_min, mut y_max) = (0, n as usize, 0, n as usize);
let mut i = 1;
loop {
for y in y_min..y_max {
res[x_min][y] = i;
i += 1;
}
x_min += 1;
if x_min == x_max {
break;
}
for x in x_min..x_max {
res[x][y_max - 1] = i;
i += 1;
}
y_max -= 1;
if y_min == y_max {
break;
}
for y in (y_min..y_max).rev() {
res[x_max - 1][y] = i;
i += 1;
}
x_max -= 1;
if x_min == x_max {
break;
}
for x in (x_min..x_max).rev() {
res[x][y_min] = i;
i += 1;
}
y_min += 1;
if y_min == y_max {
break;
}
}
res
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_59() {
assert_eq!(Solution::generate_matrix(1), vec![vec![1]]);
assert_eq!(Solution::generate_matrix(2), vec![vec![1, 2], vec![4, 3]]);
assert_eq!(
Solution::generate_matrix(3),
vec![vec![1, 2, 3], vec![8, 9, 4], vec![7, 6, 5],]
);
}
}