-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path07-find.cpp
38 lines (33 loc) · 1.03 KB
/
07-find.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
// 07-find.cpp : find and erase a single element
import std;
using namespace std;
int main() {
string a{ "hello" };
vector v{ 1, 9, 7, 3 };
set s{ 3, 8, 6, 4, 3 };
cout << "Before:\nstring: " << a << "\nvector: ";
copy(begin(v), end(v), ostream_iterator<int>(cout, " "));
cout << "\nset: ";
copy(begin(s), end(s), ostream_iterator<int>(cout, " "));
cout << '\n';
auto f1 = a.find('l');
if (f1 != string::npos) {
cout << "Found in string at position: " << f1 << '\n';
a.erase(f1, 1);
}
auto f2 = find(begin(v), end(v), 7);
if (f2 != end(v)) {
cout << "Found in vector: " << *f2 << '\n';
v.erase(f2);
}
auto f3 = s.find(6);
if (f3 != end(s)) {
cout << "Found in set: " << *f3 << '\n';
s.erase(f3);
}
cout << "After:\nstring: " << a << "\nvector: ";
copy(begin(v), end(v), ostream_iterator<int>(cout, " "));
cout << "\nset: ";
copy(begin(s), end(s), ostream_iterator<int>(cout, " "));
cout << '\n';
}