esongs
September 7th, 2002, 04:09 AM
who can give me a sample that demo of using insert_iterator. thanks!
|
Click to See Complete Forum and Search --> : how to use insert_iterator esongs September 7th, 2002, 04:09 AM who can give me a sample that demo of using insert_iterator. thanks! Philip Nicoletti September 7th, 2002, 07:36 AM list<int> mylist; mylist.push_back(1); mylist.push_back(18); mylist.push_back(61); mylist.push_back(15); mylist.push_back(155); mylist.push_back(1223); mylist.push_back(331); mylist.push_back(13); // create vector and copy the elements of list to it // using an insert iterator (back_inserter) vector<int> myvector; copy (mylist.begin(),mylist.end(),back_inserter(myvector)); esongs September 8th, 2002, 07:54 PM thank you. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |