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
|
#include <iostream>
#include <vector>
#define N 3
using namespace std;
string* func(string a[N][N], short k, string s) {
string* sn = new string[N];
vector<string> l;
// Diagonale secondaria
for(int i = N-1, j = 0; i >= 0; --i, ++j) {
l.push_back(a[i][j]);
}
bool d2 = true;
for(auto const& i : l) {
if(i.length() < k || i.find(s) != 0) {
d2 = false;
break;
}
}
if(d2) {
for(int i = 0; i < N; ++i) {
sn[i] = l.at(i);
}
} else {
for(int i = 0; i < N; ++i) {
sn[i] = a[i][i];
}
}
return sn;
}
int main() {
string a[N][N] = {
{"aab", "bbc", "dde"},
{"xyb", "bbc", "yz3"},
{"47x", "1y_", "23g"},
};
string* x = func(a, 3, "bb");
for(int i = 0; i < N; ++i)
cout << x[i] << ' ';
cout << endl;
return 0;
}
|