-
Notifications
You must be signed in to change notification settings - Fork 0
/
magicMatrix.c
80 lines (72 loc) · 1.13 KB
/
magicMatrix.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int n = 0;
int next(int x)
{
if (x == n - 1)
{
x = 0;
}
else
{
x++;
}
return x;
}
int prev(int x)
{
if (x == 0)
{
x = n - 1;
}
else
{
x--;
}
return x;
}
int main(void)
{
// Get mat size.
scanf("%d", &n);
// Init 0 mat.
int mat[n][n];
memset(mat, -1, sizeof(mat));
// Start creation.
int row = 0, col = (n - 1) / 2;
for (int i = 1; 1; i++)
{
mat[row][col] = i;
if (mat[prev(row)][next(col)] == -1)
{
row = prev(row);
col = next(col);
}
else if (mat[next(row)][col] == -1)
{
row = next(row);
}
else
{
break;
}
}
// Print result.
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
printf("%d", mat[i][j]);
if (j != n - 1)
{
printf(" ");
}
}
if (i != n - 1)
{
printf("\n");
}
}
return 0;
}