-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.cpp
79 lines (67 loc) · 1.56 KB
/
util.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
#include "util.hpp"
FieldSet field_set_from(const FDSet& set) {
FieldSet result;
for (auto& e: set) {
for (auto& f: e.first) {
result.insert(f);
}
for (auto& f: e.second) {
result.insert(f);
}
}
return result;
}
FieldSet field_set_from(FDSet&& set) {
return field_set_from(set);
}
// Field
std::ostream& operator << (std::ostream& out, const Field& field) {
out << field.string_;
return out;
}
// For FieldSet
std::istream& operator >> (std::istream& in, FieldSet& set) {
std::string s;
in >> s;
for (char ch: s) {
Field field = std::string{ch};
set.insert(field);
}
return in;
}
std::ostream& operator << (std::ostream& out, const FieldSet& set) {
for (auto& field: set) {
out << field;
}
return out;
}
// For Functional Dependencies
std::istream& operator >> (std::istream& in, FD& fd) {
FieldSet f1, f2;
in >> f1 >> f2;
fd = make_FD(f1, f2);
return in;
}
std::ostream& operator << (std::ostream& out, const FD& fd) {
out << fd.first << " " << fd.second;
return out;
}
std::ostream& operator << (std::ostream& out, FD&& fd) {
return out << fd;
}
std::istream& operator >> (std::istream& in, FDSet& set) {
FD fd;
while (in >> fd) {
set.insert(fd);
}
return in;
}
std::ostream& operator << (std::ostream& out, const FDSet& set) {
for (auto& e: set) {
out << e << "\n";
}
return out;
}
std::ostream& operator << (std::ostream& out, FDSet&& set) {
return out << set;
}