68. Text Justification

题目

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.
click to show corner cases.
Corner Cases:
A line other than the last line might contain only one word. What should you do in this case?In this case, that line should be left-justified.

分析

先确定能放入几个词
然后确定每个间隔处放几个空格以及前几个空格要多加空格
然后进行操作,要注意处理只能放一个词的情况以及最后一行的情况。

实现

class Solution {
public:
    vector fullJustify(vector& words, int maxWidth) {
        vector ans;
        int start=0, i, length, n;
        while(start1 && i

思考

你可能感兴趣的:(68. Text Justification)