-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpiralMatrix.java
42 lines (39 loc) · 1.22 KB
/
SpiralMatrix.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
import java.util.*;
public class matrics{
public static void spiralPrint(int matrix[][]) {
int startRow=0;
int startCol=0;
int endRow=matrix.length-1;
int endCol=matrix[0].length-1;
while(startRow <= endRow && startCol <= endCol) {
//top
for(int j=startCol; j<=endCol;j++) {
System.out.print(matrix[startRow][j]+" ");
}
//right
for(int i=startRow+1; i<=endRow;i++) {
System.out.print(matrix[i][endCol]+ " ");
}
//bottom
for(int j=endCol-1;j>=startCol;j--) {
System.out.print(matrix[endRow][j]+" ");
}
//left
for(int i=endRow-1;i>=startRow;i--) {
System.out.print(matrix[i][startCol]+ " ");
}
startCol++;
startRow++;
endCol--;
endRow--;
}
System.out.println();
}
public static void main(String args[]) {
int matrix[][] = {{1,2,3,4},
{5,6,7,8},
{9,10,11,12},
{13,14,15,16}};
spiralPrint(matrix);
}
}