remove( ) function in List

Suman Barik
0

// CPP program to illustrate

// Implementation of remove() function

#include <iostream>

#include <list>

using namespace std;


int main()

{

list<int> mylist{ 1, 2, 2, 2, 5, 6, 7 };

mylist.remove(2);

for (auto it = mylist.begin(); it != mylist.end(); ++it)

cout << ' ' << *it;

}


Tags

Post a Comment

0Comments
Post a Comment (0)