forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
65 lines (58 loc) · 1.6 KB
/
Solution.cpp
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
class Solution {
public:
vector<vector<int>> generateMatrix(int n) {
if (0 == n)
return vector<vector<int>>() ;
vector<vector<int>> res(n, vector<int>(n, 0)) ;
int i = 0, j = 0 ;
int dir = 0 ;
int n2 = n*n ;
for (int d = 1; d <= n2; ++d)
{
res[i][j] = d ;
//cout << d << endl ;
switch (dir)
{
case 0:
++j ;
if (j >= n || res[i][j])
{
dir++ ;
--j ;
++i ;
}
break ;
case 1:
++i ;
if (i >= n || res[i][j])
{
dir++ ;
--i ;
--j ;
}
break ;
case 2:
--j ;
if (j < 0 || res[i][j])
{
dir++ ;
++j ;
--i ;
}
break ;
case 3:
--i ;
if (i < 0 || res[i][j])
{
dir = 0 ;
++i ;
++j ;
}
break ;
default:
break ;
}
}
return res ;
}
};