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 109 110 111 112 113 114 115 116 117 118 119 120
|
#include <iostream>
#include <cstring>
#include <ctime>
#include <chrono>
using namespace std;
void functionIteration(char array[], const int size, int countProg);
void functionRecurcy(char array[], const int size, int countProg, int& k, int i = 0, int j = 0, int index = 0);
int main() {
srand(time(NULL));
int size, k = 0, j = 0, i = 0, index = 0;
string str = "prog";
while (true) {
cout << "Insert the size: ";
cin >> size;
if (!cin or size <= 0) {
cin.clear();
cin.ignore(10000, '\n');
} else
break;
}
int countProg = 1 + rand() % 10;
char array[5000];
while (k != countProg) {
while (j != 4) {
array[i] = str[j];
i++;
j++;
}
j = 0;
k++;
}
for (; i < size; i++)
array[i] = (char)i;
functionIteration(array, size, countProg);
k = i = j = index = 0;
auto start = chrono::high_resolution_clock::now();
functionRecurcy(array, size, countProg, k, 0, 0, 0);
cout << "\n[RECYRCY]Count = " << countProg << " K = " << k << endl;
auto end = chrono::high_resolution_clock::now();
chrono::duration<double> duretion = end - start;
cout << "Duration: " << duretion.count() << "s" << endl;
return 0;
}
void functionIteration(char array[], const int size, int countProg) {
auto start = chrono::high_resolution_clock::now();
string str = "prog";
int j = 0, i = 0;
int k = 0;
j = 0;
int index = 0;
for (int i = 0; i < size; ) {
if (array[i] == str[0]) {
while (index != 4) {
if (array[i] == str[j])
j++;
i++;
index++;
}
if (j == 4)
k++;
j = 0;
index = 0;
} else
i++;
}
auto end = chrono::high_resolution_clock::now();
chrono::duration<double> duretion = end - start;
cout << "Duration: " << duretion.count() << "s" << endl;
cout << "Count prog = " << countProg << "\tK = " << k << endl;
}
void functionRecurcy(char array[], const int size, int countProg, int& k, int i, int j, int index) {
string str = "prog";
if (array[i] == str[0]) {
while (index != 4) {
if (array[i] == str[j])
j++;
i++;
index++;
}
} else
i++;
if (j == 4) {
k++;
j = 0;
index = 0;
}
if (i == size) {
return;
}
functionRecurcy(array, size, countProg, k, i++, j++, index++);
}
|