-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOperations.cpp
More file actions
94 lines (78 loc) · 2.12 KB
/
Operations.cpp
File metadata and controls
94 lines (78 loc) · 2.12 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* \file Operations.cpp
* \brief
*
* \todo
*/
#include <iostream>
#include <list>
#include <iterator>
using namespace std;
int main()
{
std::list<int> listOfNumbers;
//Inserting elements at end in list
listOfNumbers.push_back(5);
listOfNumbers.push_back(6);
//Inserting elements at front in list
listOfNumbers.push_front(2);
listOfNumbers.push_front(1);
cout << "The initial list is: " ;
// Iterating over list elements and display them
std::list<int>::iterator it = listOfNumbers.begin();
while(it != listOfNumbers.end())
{
std::cout<<(*it)<<" ";
it++;
}
std::cout<<std::endl;
//Inserting elements in between the list using
// insert(pos,elem) member function. Let's iterate to
// 3rd position
it = listOfNumbers.begin();
it++;
it++;
// Iterator 'it' is at 3rd position.
listOfNumbers.insert(it, 4);
cout << "Inserting an Element at the 3rd position : ";
// Iterating over list elements and display them
it = listOfNumbers.begin();
while(it != listOfNumbers.end())
{
std::cout<<(*it)<<" ";
it++;
}
std::cout<<std::endl;
//Erasing elements in between the list using
// erase(position) member function. Let's iterate to
// 3rd position
it = listOfNumbers.begin();
it++;
it++;
// Iterator 'it' is at 3rd position. Now erase this element.
listOfNumbers.erase(it);
cout << "Erasing the element at the 3rd position: ";
// Iterating over list elements and display them
it = listOfNumbers.begin();
while(it != listOfNumbers.end())
{
std::cout<<(*it)<<" ";
it++;
}
std::cout<<std::endl;
//Lets remove all elements with value greater than 3.
listOfNumbers.remove_if([](int elem) { if(elem > 3)
return true;
else
return false;
});
cout << "Removing all elements greater than 3: ";
it = listOfNumbers.begin();
while(it != listOfNumbers.end())
{
std::cout<<(*it)<<" ";
it++;
}
std::cout<<std::endl;
return 0;
}