forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_59.java
117 lines (106 loc) · 2.49 KB
/
_59.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.fishercoder.solutions;
/**
* 59. Spiral Matrix II
*
* Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
]
*/
public class _59 {
public static class Solution1 {
public int[][] generateMatrix(int num) {
int temp = num;
int[][] fourEdges = new int[num][num];
int value = 1;
int i = 0;
int j = 0;
if (num % 2 == 0) {
//when num is even
while (i < num / 2 && j < num / 2 && temp >= 0) {
/* Assign the top row */
while (j < temp) {
fourEdges[i][j] = value;
j++;
value++;
}
/* Assign the right column */
while (i < temp - 1) {
i++;
fourEdges[i][j - 1] = value;
value++;
}
j = j - 2;
/* Assign the bottom row */
while (j >= num - temp) {
fourEdges[i][j] = value;
j--;
value++;
}
i--;
j++;
/* Assign the left column */
while (i > num - temp) {
fourEdges[i][j] = value;
i--;
value++;
}
//}
i++;
j++;
temp--;
}
} else {
//when num is odd
while (i < num / 2 && j < num / 2 && temp >= 0) {
/* Assign the top row */
while (j < temp) {
fourEdges[i][j] = value;
j++;
value++;
}
/* Assign the right column */
while (i < temp - 1) {
i++;
fourEdges[i][j - 1] = value;
value++;
}
j = j - 2;
/* Assign the bottom row */
while (j >= num - temp) {
fourEdges[i][j] = value;
j--;
value++;
}
i--;
j++;
/* Assign the left column */
while (i > num - temp) {
fourEdges[i][j] = value;
i--;
value++;
}
//}
i++;
j++;
temp--;
}
fourEdges[num / 2][num / 2] = num * num;
}
for (int m = 0; m < num; m++) {
for (int n = 0; n < num; n++) {
System.out.print(fourEdges[m][n] + "\t");
if ((n + 1) % num == 0) {
System.out.println();
}
}
}
return fourEdges;
}
}
}