Prompt the user to enter a string of their choosing (assume no punctuation). Store the text in a string. Split the string into words and print out a sorted list of the words. Use a function print_words() to do this printing; it has a list of words as a parameter and prints each word on a a single line separated by spaces. When done printing the line, print a newline character. Now implement a convert_words() function, which has a list of words as a parameter, and returns a list of words all in lower case. Then extend your program to prompt the user as before, but this time also convert the words to lower case using convert_words(), sort them, and then print the list of lower case words again using print_words(). See the following Implement a remove_duplicates() function, which has a list of words that has been sorted as a parameter, and returns a list of words with duplicates removed. Then extend your program to print the sorted list of words all in lower case but without duplicate words, such as the following:

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question

Prompt the user to enter a string of their choosing (assume no punctuation). Store the text in a string. Split the string into words and print out a sorted list of the words. Use a function print_words() to do this printing; it has a list of words as a parameter and prints each word on a a single line separated by spaces. When done printing the line, print a newline character.

Now implement a convert_words() function, which has a list of words as a parameter, and returns a list of words all in lower case. Then extend your program to prompt the user as before, but this time also convert the words to lower case using convert_words(), sort them, and then print the list of lower case words again using print_words(). See the following

 Implement a remove_duplicates() function, which has a list of words that has been sorted as a parameter, and returns a list of words with duplicates removed. Then extend your program to print the sorted list of words all in lower case but without duplicate words, such as the following:

Enter a sentence (without punctuation): This Is a Sentence That Repeats this is a sentence that
repeats but has different words with Capitals
Sorted list of words:
Capitals Is Repeats Sentence That This a a but different has is repeats sentence that this with
words
Sorted list of words in lower case:
a a but capitals different has is is repeats repeats sentence sentence that that this this with
words
Transcribed Image Text:Enter a sentence (without punctuation): This Is a Sentence That Repeats this is a sentence that repeats but has different words with Capitals Sorted list of words: Capitals Is Repeats Sentence That This a a but different has is repeats sentence that this with words Sorted list of words in lower case: a a but capitals different has is is repeats repeats sentence sentence that that this this with words
Enter a sentence (without punctuation): This Is a Sentence That Repeats this is a sentence that
repeats but has different words with Capitals
Sorted list of words:
Capitals Is Repeats Sentence That This a a but different has is repeats sentence that this with
words
Sorted list of words in lower case:
a a but capitals different has is is repeats repeats sentence sentence that that this this with
words
Sorted list of words in lower case without duplicates:
a but capitals different has is repeats sentence that this with words
Transcribed Image Text:Enter a sentence (without punctuation): This Is a Sentence That Repeats this is a sentence that repeats but has different words with Capitals Sorted list of words: Capitals Is Repeats Sentence That This a a but different has is repeats sentence that this with words Sorted list of words in lower case: a a but capitals different has is is repeats repeats sentence sentence that that this this with words Sorted list of words in lower case without duplicates: a but capitals different has is repeats sentence that this with words
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning