-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.cpp
46 lines (43 loc) · 1.24 KB
/
list.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
// list.cpp -- using a list
#include <iostream>
#include <list>
#include <iterator>
int main()
{
using namespace std;
list<int> one (5, 2);
int stuff[5] = {1, 2, 4, 8, 6};
list<int> two;
two.insert (two.begin(), stuff, stuff + 5);
int more[6] = {6, 4, 2, 4, 6, 5};
list<int> three (two);
three.insert(three.end(), more, more + 6);
cout << "List one: ";
ostream_iterator<int, char> out (cout, " ");
copy (one.begin(), one.end(), out);
cout << endl << "List two: ";
copy (two.begin(), two.end(), out);
cout << endl << "List three: ";
copy (three.begin(), three.end(), out);
three.remove (2);
cout << endl << "List three minus 2s: ";
copy (three.begin(), three.end(), out);
three.splice (three.begin(), one);
cout << endl << "List three after splices: ";
copy (three.begin(), three.end(), out);
cout << endl << "List one: ";
copy (one.begin(), one.end(), out);
three.unique();
cout << endl << "List three after unique: ";
copy (three.begin(), three.end(), out);
three.sort();
three.unique();
cout << endl << "List three after sort & unique: ";
copy (three.begin(), three.end(), out);
two.sort();
three.merge(two);
cout << endl << "Sorted two merged into three: ";
copy (three.begin(), three.end(), out);
cout << endl;
return 0;
}