-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path05_rotate_image.cpp
97 lines (82 loc) · 2.07 KB
/
05_rotate_image.cpp
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
/*
Rotate Image
- Given a 2D array of size NxN, Rotate the array 90 degrees anti-clockwise.
*/
#include <iostream>
#include <algorithm>
using namespace std;
void rotate(int arr[][1000], int rows, int cols){
// reverse each row
for(int row=0; row<=rows-1; row++){
int start_col = 0;
int end_col = cols-1;
while(start_col<end_col){
swap(arr[row][start_col], arr[row][end_col]);
start_col++;
end_col--;
}
}
// transpose
for(int row=0; row<=rows-1; row++){
for(int col=0; col<=cols-1; col++){
if(row<col){
swap(arr[row][col],arr[col][row]);
}
}
cout << " ";
}
}
void rotate_stl(int arr[][1000],int rows,int cols){
// reverse using STL (Standard Template Library) >> reverse(start_container,end_container)
for(int row=0; row<=rows-1; row++){
reverse(arr[row], arr[row]+cols);
}
// transpose
for(int row=0; row<=rows-1; row++){
for(int col=0; col<=cols-1; col++){
if(row<col){
swap(arr[row][col],arr[col][row]);
}
}
cout << " ";
}
cout << endl;
}
int main(){
int arr[1000][1000] = {0};
int rows, cols;
cout << "Enter Rows & Cols: ";
cin >> rows >> cols;
int val = 1;
for(int row=0; row<=rows-1; row++){
for(int col=0; col<=cols-1; col++){
arr[row][col] = val++;
cout << arr[row][col] << " ";
}
cout << endl;
}
// rotate(arr, rows, cols);
rotate_stl(arr, rows, cols);
// display output
cout << "After rotating 90 degree anticlockwise: \n";
for(int row=0; row<=rows-1; row++){
for(int col=0; col<=cols-1; col++){
cout << arr[row][col] << " ";
}
cout << endl;
}
return 0;
}
/*
OUTPUT:
Enter Rows & Cols: 4 4
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
After rotating 90 degree anticlockwise:
4 8 12 16
3 7 11 15
2 6 10 14
1 5 9 13
*/