Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Use a library algorithm to concatenate the strings in a vector. I've provided a template that reads in the data and prints the result; all

Use a library algorithm to concatenate the strings in a vector. I've provided a template that reads in the data and prints the result; all you need to do is to provide the one line of code that concatenates the strings.

For example, if the strings in the vector are "Bill", "Charlie", Percy", "George", "Fred", "Ron", "Ginny", the resulting string would be "BillCharlieFredGeorgeGinnyPercyRon".

Hint: remember that strings are concatenated using the + operator.

#include

#include

#include

#include

#include

#include

#include

using namespace std;

int main()

{

vector vs;

copy(istream_iterator(cin), istream_iterator(), back_inserter(vs));

// Sort the strings

YOUR CODE GOES HERE

// Concatenate the strings into a single string.

string s = YOUR CODE GOES HERE

cout << s << ' ';

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions