Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in C++ Write a program where you will have a vector V where each entry is a pointer to a vector of strings. This means

in C++

Write a program where you will have a vector V where each entry is a pointer to a vector of strings. This means that each entry in V points to a vector of strings. Your program will then read input strings. For each string, if the number of characters in the string is N, then add it to the string vector in entry V[N-1]. Be sure to allocate the string vector in each entry as needed. The input string will have a maximum of 10 characters so you can initialize V with 10 entries. Do not add repeated entries. Stop when string "quit" is read. String "quit" should not be processed. Then output the contents of each V entry in order from V[0] to V[9], separated by spaces within the same V entry and by a new line when switching to the next entry. Skip empty entries.

Input:

Enter the input: A

Enter the input: Box

Enter the input: Cube

Enter the input: to

Enter the input: happy

Enter the input: hello

Enter the input: computer

Enter theinput: mouse

Enter the input: happiness

Enter the input: quit

Output:

A

to

Box

Cube

Happy hello mouse

// empty space

// empty space

computer

happiness

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

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

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

Joe Celkos Data And Databases Concepts In Practice

Authors: Joe Celko

1st Edition

1558604324, 978-1558604322

More Books

Students also viewed these Databases questions

Question

How has Starbucks changed since its early days?

Answered: 1 week ago