Tuesday 13 May 2014

Insert 'value' into every element but the first

Created By: Hanan Hanan
Contact Number: Pak (+92)-321-59-95-634
==================================
Insert 'value' into every element but the first
===========================
#include 
#include
#include
#include
#include
using namespace std;

int main()
{
// create empty deque of strings
deque coll;

// insert several elements
coll.assign (3, string("string"));
coll.push_back ("last string");
coll.push_front ("BBB string");
coll.push_front ("CCC string");
coll.push_front ("AAA string");

// print elements separated by newlines
copy (coll.begin(), coll.end(),ostream_iteratorring>(cout,"\n"));
cout << endl;

// insert ''another'' into every element but the first
for (unsigned i=1; icoll[i] = "another " + coll[i];
}

// print elements separated by newlines
copy (coll.begin(), coll.end(),ostream_iteratorring>(cout,"\n"));
cout << endl;

}

/*
AAA string
CCC string
BBB string
string
string
string
last string

AAA string
another CCC string
another BBB string
another string
another string
another string
another last string

*/

0 comments:

Post a Comment