-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.cc
51 lines (42 loc) · 886 Bytes
/
main.cc
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
#include <iostream>
#include <cstdlib>
#include <map>
#include <set>
class El {
public:
El(int val) : val_(val) {
}
~El() = default;
int GetVal() const {
return val_;
}
void SetVal(int val) {
val_ = val;
}
private:
int val_;
};
struct ElCmp {
bool operator()(El const *const lhs, El const *const rhs) const {
return lhs->GetVal() < rhs->GetVal();
}
};
int main(int argc, char* argv[]) {
std::set<El*, ElCmp> s;
auto a = new El(10);
s.insert(a);
auto b = new El(5);
s.insert(b);
auto c = new El(15);
s.insert(c);
for (auto el : s)
std::cout << el->GetVal() << " ";
std::cout << std::endl;
// 5 10 15
c->SetVal(1);
for (auto el : s)
std::cout << el->GetVal() << " ";
std::cout << std::endl;
// 5 10 1
return EXIT_SUCCESS;
}