-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSpiralMatrixPrint.java
48 lines (44 loc) · 1.36 KB
/
SpiralMatrixPrint.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
/*
* @ Spiral Matrix
* array[][] = { {1,2,3,4},
* {5,6,7,8},
* {9,10,11,12},
* {13,14,15,16} };
*
* Output: -> 1 2 3 4 8 12 16 15 14 13 9 5 6 7 11 10
*/
public class SpiralMatrixPrint {
public static void spiralMatrixPrint(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 i = startCol; i <= endCol; i++) {
System.out.print(matrix[startRow][i]+ " ");
}
//right
for (int i = startRow; i <= endRow; i++) {
System.out.print(matrix[i][endCol]+ " ");
}
//bottom
for (int i = endRow; i >=startCol ; i--) {
System.out.print(matrix[i][endRow]+ " ");
}
//left
for (int i = startCol; i >=startRow ; i--) {
System.out.print(matrix[i][startCol]+" ");
}
startRow++;
startCol++;
endRow--;
endCol--;
}
}
public static void main(String[] args){
int matrix[][]= { {1,2,3,4},
{5,6,7,8},{9,10,11,12},{13,14,15,16} };
spiralMatrixPrint(matrix);
}
}