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.”]
L: 16.
Return the formatted lines as:
[
“This is an”,
“example of text”,
“justification. “
]
Note: Each word is guaranteed not to exceed L in length.
解法1:
此题不难,也没有什么考点,可能就是考察编程能力和细心程度把。
思路大体就是先找出来每一行有哪些words,然后在分布空格。
分布空格的时候要从后往前分布,保证比较均匀且较多的空格在左面。
对于最后一行的处理要注意补齐空格。
C++
Java
第二遍写的
|
|