-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStack.cpp
98 lines (87 loc) · 1.5 KB
/
Stack.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include<iostream>
using namespace std;
struct stack {//описани стекa
int inf;
stack* next;
};
void push(stack*& h, int x) {//добавление элемента в стек
stack* r = new stack;
r->inf = x;
r->next = h;
h = r;
}
int pop(stack*& h) {//удаление элемента из стекa
int i = h->inf;
stack* r = h;
h = h->next;
delete r;
return i;
}
void reverse(stack*& h) {//переворачиваем стек
stack* obr = NULL;
while (h) {
push(obr, pop(h));
}
h = obr;
}
bool isgl(char a) {
string str("aeiouy");
return str.find(a) != string::npos;
}
int last(stack*& h) {
stack* mig = NULL;
char max = pop(h);
char x = max;
int ix = 0;
push(mig, max);
int i = 0;
bool flag = true;
if (isgl(x)) {
push(h, x);
return 0;
}
while (h) {//пока h не пуст
x = pop(h);
if (isgl(x) && flag) {
max = x;
ix = i;
flag = false;
}
push(mig, x);
i++;
}
reverse(mig);
h = mig;
return ix;
}
stack* result(stack*& h) {
int max = last(h);//ищем позицию последней гласной
stack* mig = NULL;
char x;
int i = 0;
while (h) {
x = pop(h);
if (i == max) {
push(mig, '!');
}
push(mig, x);
i++;
}
return (mig); //возвращаем temp как результат функции
}
int main() {
stack* h = NULL;
int n;
char x;
cout << "Size = ";
cin >> n;
cout << "Input element: ";
for (int i = 0; i < n; i++) {
cin >> x;
push(h, x);
}
h = result(h);
while (h) {
cout << pop(h) << " ";
}
}