LeetCode --- 68. Text Justification

题目链接: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.

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.

这道题的要求是给定一组单词和长度L,以两端对齐的方式格式化文本使每行只有L个字符,其中最后一行左对齐。每行的单词间可能需要补充额外的空格,如果空格数目不能整除单词间隔的数目,则左侧数目要多于右侧。

字符串处理,处理每行文本的时候,分为2步:

  1. 统计并记录每行L个字符最多可以容纳几个单词。这里需要注意一下,统计的是,对于从第二个开始的单词,都有预留一个空格的位置。
  2. 计算单词间的空格数目并填入单词和空格。在不是最后1行的情况下,假设单词间隔有n个,剩余L-l个空位置,这每个位置需要(L-l)/n个空格,其中前(L-l)%n个间隔各需要多1个空格。当然,最后如果没有满L个字符,需要在后面补充空格直到L个字符。

时间复杂度:O(n)

空间复杂度:O(1)

 1 class Solution
 2 {
 3 public:
 4     vector<string> fullJustify(vector<string> &words, int L)
 5     {
 6         vector<string> vs;
 7         // i:当前行的开始单词位置
 8         // j:当前行的最后一个单词的下一位置
 9         // l:当前行的所有单词的总长度
10         for(int i = 0, j, l; i < words.size(); i = j)
11         {
12             string s = words[i];
13             // 计算j和l的值
14             for(j = ++ i, l = s.size(); j < words.size() && l + words[j].size() <= L - (j - i + 1); ++ j)
15                 l += words[j].size();
16             // 构造当前行字符串
17             for(int k = 0; k < j - i; ++ k)
18             {
19                 if(j < words.size()) // 如果不是最后一行,平均分配单词间的空格
20                     s += string((L - l) / (j - i) + ((L - l) % (j - i) > k), ‘ ‘);
21                 else // 如果是最后一行,这单词间补充1个空格
22                     s += ‘ ‘;
23                 s += words[i + k];
24             }
25             // 补充空格到指定长度
26             s += string(L - s.size(), ‘ ‘);
27             vs.push_back(s);
28         }
29         return vs;
30     }
31 };

转载请说明出处:LeetCode --- 68. Text Justification

时间: 2024-10-09 05:25:20

LeetCode --- 68. Text Justification的相关文章

[leetcode] 68. Text Justification 解题报告

题目链接: https://leetcode.com/problems/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; tha

leetcode 68 Text Justification ----- java

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 ex

Leetcode 68. Text Justification 文本调整 解题报告

1 解题思想 这道题,其实我也想不通为什么要标记为Hard模式,题目的大意就是对一个字符串数组进行格式化调整,输出对应的句子. 要求有: 1.每一行的字符串长度不能超过一个固定长度maxWidth 2.每两个单词之间必须有一个空格,如果一行之间的单词之间空格不能细分,那么必须左边的空格多,右边的少.并且,空格多的地方只比右边少的多一个 3.最后一行不适用2的空格方式,正常的每个单词空一格就好,最后留白就好 提前贴个解释: * 这道题关键在于仔细的处理每一个步骤: * 1.每一行选择K的单词,K个

[leetcode]68. Text Justification文字对齐

Given an array of words and a width maxWidth, format the text such that each line has exactly maxWidth 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

No.68 Text Justification

No.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

【leetcode】 Text Justification

问题: 给定一个字符串数组words,一个整数L,将words中的字符串按行编辑,L表示每行的长度. 要求: 1)每个单词之间至少是有一个空格隔开的. 2)最后一行每个单词间只间隔一个空格, 最后一个单词后不足L长度的用空格填充. 3)除最后一行外,其他行进行填充长度的空格要均分,不能均分的,将余数代表的空格数依次填充在行左. For example, words: ["This", "is", "an", "example"

【一天一道LeetCode】#68. Text Justification

一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 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

[LeetCode][JavaScript]Text Justification

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 i

【leetcode】Text Justification

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 i