-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
/
spiral_print.cpp
81 lines (71 loc) · 1.92 KB
/
spiral_print.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
/**
* @file
* @brief Print the elements of a matrix traversing it spirally
*/
#include <iostream>
/** Arrange sequence of numbers from '1' in a matrix form
* \param [out] a matrix to fill
* \param [in] r number of rows
* \param [in] c number of columns
*/
void genArray(int **a, int r, int c) {
int value = 1;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
a[i][j] = value;
std::cout << a[i][j] << " ";
value++;
}
std::cout << std::endl;
}
}
/** Traverse the matrix spirally and print the sequence of elements
* \param [in] a matrix to read from
* \param [in] r number of rows
* \param [in] c number of columns
*/
void spiralPrint(int **a, int r, int c) {
int startRow = 0, endRow = r - 1;
int startCol = 0, endCol = c - 1;
int cnt = 0;
while (startRow <= endRow && startCol <= endCol) {
/// Print start row
for (int i = startCol; i <= endCol; i++, cnt++) {
std::cout << a[startRow][i] << " ";
}
startRow++;
/// Print the end col
for (int i = startRow; i <= endRow; i++, cnt++) {
std::cout << a[i][endCol] << " ";
}
endCol--;
/// Print the end row
if (cnt == r * c) {
break;
}
for (int i = endCol; i >= startCol; i--, cnt++) {
std::cout << a[endRow][i] << " ";
}
endRow--;
/// Print the start Col
if (cnt == r * c) {
break;
}
for (int i = endRow; i >= startRow; i--, cnt++) {
std::cout << a[i][startCol] << " ";
}
startCol++;
}
}
/** main function */
int main() {
int r, c;
std::cin >> r >> c;
int **a = new int *[r];
for (int i = 0; i < r; i++) a[i] = new int[c];
genArray(a, r, c);
spiralPrint(a, r, c);
for (int i = 0; i < r; i++) delete[] a[i];
delete[] a;
return 0;
}