-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.cpp
53 lines (49 loc) · 1.11 KB
/
main.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
#include "pch.h"
#include <initializer_list>
#include <functional>
struct Node {
int value;
Node *next;
Node(int i, Node *n): value(i), next(n) {}
};
void list_appends(Node ** p, initializer_list<int> &&list) {
for (auto i : list) {
*p = new Node(i, *p);
}
}
void list_removeIf(Node ** p, function<bool(int)> f) {
while (*p) {
if (f((*p)->value)) {
Node *t = *p;
*p = t->next;
delete t;
} else {
p = &(*p)->next;
}
}
}
void list_removeIf_r(Node *& p, function<bool(int)> f) {
while (p != nullptr && f(p->value)) {
Node *t = p;
p = t->next;
delete t;
}
if (p != nullptr) list_removeIf_r(p->next, f);
}
void list_print(Node *p) {
for (; p; p = p->next) {
printf("%d,", p->value);
}
puts("");
}
int main() {
Node *p = nullptr;
list_appends(&p, {1, 2, 3, 4});
list_appends(&p, {5, 6, 7});
list_print(p);
list_removeIf(&p, [](int i){return i%2;});
list_print(p);
list_removeIf_r(p, [](int i){return i%3;});
list_print(p);
puts("finish");
}