-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDetermineWhetherMatrixCanBeObtainedByRotation.java
42 lines (39 loc) · 1.23 KB
/
DetermineWhetherMatrixCanBeObtainedByRotation.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
package Data_Structure_And_Algorithm;
//https://leetcode.com/problems/determine-whether-matrix-can-be-obtained-by-rotation/description/
public class DetermineWhetherMatrixCanBeObtainedByRotation {
public boolean findRotation(int[][] mat, int[][] target) {
for(int i = 0; i < 4; i++){
if(check(mat, target)){
return true;
}
rotate(mat);
}
return false;
}
public void rotate(int[][] mat){
for(int i = 0; i < mat.length; i++){
for(int j = 0; j < i ;j++){
int t = mat[i][j];
mat[i][j] = mat[j][i];
mat[j][i] = t;
}
}
for(int i = 0; i < mat.length; i++){
for(int j = 0; j < mat[i].length/2; j++){
int t = mat[i][j];
mat[i][j] = mat[i][mat.length-1-j];
mat[i][mat.length-1-j] = t;
}
}
}
public boolean check(int[][] mat, int[][] target){
for(int i = 0; i < mat.length; i++){
for(int j = 0; j < mat[i].length; j++){
if(mat[i][j] != target[i][j]){
return false;
}
}
}
return true;
}
}