Question: Please use C,C++,Java or Python programming language to design your computer programs. (20%) Given an array of words and a length L, format the text

Please use C,C++,Java or Python programming language to design your computer programs.

Please use C,C++,Java or Python programming language to design your computer programs.

(20%) Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified. You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces when necessary so that each line has exactly L characters. Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line do not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right. For the last line of text, it should be left justified and no extra space is inserted between words. For example, words: ["This", "is", "an", "example", "of", "text", "justification."1 L: 16 Return the formatted lines as 4" "This is an", "example of text", "justification. " Please write a program text justfy () to generate the list of formatted lines from a list of words

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!