Answers for "delete element of array c++ stl"

C++
0

c++ remove item from list

// remove from list
#include <iostream>
#include <list>

int main ()
{
  int myints[]= {17,89,7,14};
  std::list<int> mylist (myints,myints+4);

  mylist.remove(89);

  std::cout << "mylist contains:";
  for (std::list<int>::iterator it=mylist.begin(); it!=mylist.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << 'n';

  return 0;
}
Posted by: Guest on June-28-2020

Browse Popular Code Answers by Language