//myListrbegin1.cpp #include #include #include using namespace std; //object.insert(iterator, how_many,data); //list remove function int main() { string str1[] = {"A", "B", "C","D"}; string str2[] = {"Apple", "Banana", "Cherry","Drupe"}; // list Lstr1(str1, str1+4); list Lstr2(str2, str2+4); // cout<<"\n Lstr1.size() : " << Lstr1.size() <:: reverse_iterator rit; for(rit= Lstr1.begin(); rit !=Lstr1.end(); rit++) { cout <<" "<< *rit; } rit = Lstr1.begin(); rit++; //insert one below top element cout<<"\n fuse two lists in sequence "<