-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathrotateMatrix.java
108 lines (96 loc) · 3.03 KB
/
rotateMatrix.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
// Rotate Matrix Elements
// Given a matrix, clockwise rotate elements in it.
// Examples:
// Input
// 1 2 3
// 4 5 6
// 7 8 9
// Output:
// 4 1 2
// 7 5 3
// 8 9 6
// For 4*4 matrix
// Input:
// 1 2 3 4
// 5 6 7 8
// 9 10 11 12
// 13 14 15 16
// Output:
// 5 1 2 3
// 9 10 6 4
// 13 11 7 8
// 14 15 16 12
// The idea is to use loops similar to the program for printing a matrix in spiral form.
// One by one rotate all rings of elements, starting from the outermost. To rotate a ring, we need to do following.
// 1) Move elements of top row.
// 2) Move elements of last column.
// 3) Move elements of bottom row.
// 4) Move elements of first column.
// Repeat above steps for inner ring while there is an inner ring.
class Matrix{
// initialize the number of rows and columns.
static int R = 4;
static int C = 4;
static void rotateMatrix(int m, int n, int[][] matrix){
int row = 0, col = 0;
int prev, curr;
/*
row - Staring row index
m - ending row index
col - starting column index
n - ending column index
*/
while(row < m && col < n){
if(row + 1 == m || col + 1 == n)
break;
// Store the first element of next row, this element will replace first element of current row
prev = matrix[row + 1][col];
// Move elements of first row from the remaining rows
for(int i=col;i<n;i++){
curr = matrix[row][i];
matrix[row][i] = prev;
prev = curr;
}
row++;
// Move elements of last column from the remaining columns
for(int i=row;i<m;i++){
curr = matrix[i][n-1];
matrix[i][n-1] = prev;
prev = curr;
}
n--;
// Move elements of last row from the remaining rows
if(row < m){
for(int i=n-1;i>=col;i--){
curr = matrix[m-1][i];
matrix[m-1][i] = prev;
prev = curr;
}
}
m--;
// Move elements of first column from the remaining columns
if(col < n){
for(int i=m-1;i>=row;i--){
curr = matrix[i][col];
matrix[i][col] = prev;
prev = curr;
}
}
col++;
}
// Print rotated matrix
for (int i = 0; i < R; i++){
for (int j = 0; j < C; j++)
System.out.print( matrix[i][j] + " ");
System.out.println();
}
}
public static void main(String[] args){
int array[][] = {{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12},
{13, 14, 15, 16}
};
rotateMatrix(R, C, array);
}
}