Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Your program should prompt the user to enter some words and then sort the words in alphabetical order and display them. You can choose to
Your program should prompt the user to enter some words and then sort the words in alphabetical order and display them. You can choose to sort them lexicographically OR alphabetically. Only one of the two should be implemented. If you choose to sort them alphabetically, you will receive 2 extra points. You can also store the words entered by the user in an array of strings with predefined size ora dynamic array. If you choose to dynamically define the array, you will receive 2 extra points. Please mention in the description comment at the top of your code which sorting algorithm you used, if you implemented lexicographie or true alphabetical sorting, and if you used dynamic arrays. A sample run of your program should look like this: If you choose to implement lexicographical sorting: Enter a word: laurie Enter a word: dinesh Enter a word: Erlich Enter a word: Richard Enter a word: 3Jian Enter a word: e Your sorted list is: Erlich Jian Richard dinesh laurie
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started