-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sem_28.cpp
70 lines (52 loc) · 1.39 KB
/
4sem_28.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
#include <iostream>
#include <fstream>
#include <ctime>
using namespace std;
void Magic_square(int n, ofstream& outfile) {
int magicSquare[n][n];
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
magicSquare[i][j] = 0;
int i = n / 2;
int j = n - 1;
clock_t start_time, end_time;
double elapsed_time;
for (int num = 1; num <= n * n;) {
start_time = clock();
if (i == -1 && j == n) {
j = n - 2;
i = 0;
} else {
if (i < 0)
i = n - 1;
if (j == n)
j = 0;
}
if (magicSquare[i][j] != 0) {
j -= 2;
i++;
continue;
} else {
magicSquare[i][j] = num++;
}
j++;
i--;
end_time = clock();
elapsed_time = double(end_time - start_time) / CLOCKS_PER_SEC;
outfile << num << "," << elapsed_time << endl;
}
}
int main() {
int n;
cout << "Enter the order of magic square: ";
cin >> n;
ofstream outfile("magic_square_execution_times.csv");
if (!outfile.is_open()) {
cerr << "Error opening file!" << endl;
return 1;
}
outfile << "Step,Execution Time" << endl;
Magic_square(n, outfile);
outfile.close();
return 0;
}