`

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

[分析] 该题算法本身不复杂,考察的是对边界条件的处理。题意把握上主要两点:1)当某行只能放下一个单词时,空格全部放在右边 2)最后一行单词间仅有一个空格,多余空格均放在右边。详细分析参考http://blog.csdn.net/linhuanmars/article/details/24063271


public class Solution {
    public List<String> fullJustify(String[] words, int maxWidth) {
        List<String> result = new ArrayList<String>();
        if (words == null || words.length == 0 || maxWidth < 0)
            return result;
        int count = 0, last = 0;
        for (int i = 0; i < words.length; i++) {
            if (count + words[i].length() + (i - last) > maxWidth) {
                int extraNum = 0, spaceNum = 0;
                if (i - 1 > last) {
                    spaceNum = (maxWidth - count) / (i - 1 - last);
                    extraNum = (maxWidth - count) % (i - 1 - last);
                } 
                StringBuilder avgSpaces = new StringBuilder();
                while (spaceNum > 0) {
                    avgSpaces.append(" ");
                    spaceNum--;
                }
                StringBuilder row = new StringBuilder();
                for (int j = last; j < i - 1; j++) {
                    row.append(words[j]);
                    row.append(avgSpaces.toString());
                    if (extraNum > 0) {
                        row.append(" ");
                        extraNum--;
                    }
                }
                row.append(words[i - 1]);
                for (int j = row.length(); j < maxWidth; j++) {
                    row.append(" ");
                }
                result.add(row.toString());
                count = 0;
                last = i;
            }
            count += words[i].length();
        }
        // deal with the last row which sometimes not processed int the above loop
        StringBuilder row = new StringBuilder();
        for (int i = last; i < words.length; i++) {
            row.append(words[i]);
            if (row.length() < maxWidth)
                row.append(" ");
        }
        while (row.length() < maxWidth)
            row.append(" ");
        result.add(row.toString());
        return result;
    }
}
分享到:
评论

相关推荐

    js-leetcode题解之68-text-justification.js

    LeetCode 题号 68 的题目是 "Text Justification"(文本对齐)。这个题目的目标是在给定的单词数组和最大宽度的情况下,将这些单词进行合理地排列,使得每一行都能够达到最大的宽度,并且左右对齐。这道题目要求输出...

    C语言-leetcode题解之68-text-justification.c

    今天我们将要探讨的文件标题"C语言-leetcode题解之68-text-justification.c",实际上是一份针对leetcode网站上第68题“文本对齐”问题的C语言解决方案。 此问题的具体要求是,给定一个单词列表和一个长度限制,编写...

    _leetcode-python.pdf

    - Text Justification: 给定一个单词数组和一个长度 maxWidth,设计一个方法使得每行中单词之间的空间均匀分配,并且左右两端对齐。 - Sqrt(x): 计算并返回x的平方根,要求不使用库函数。 - Climbing Stairs: 假设你...

    LeetCode最全代码

    # [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License]...

    LeetCode各公司题目合集

    - Text Justification:该题目要求对文本进行左右对齐处理,是字符串处理和编程思维的综合应用。 接下来,我们看下Amazon的题目集合: - Validate Binary Search Tree:验证给定的二叉树是否为有效的二叉搜索树...

    airbnb 软件工程师面试题

    #### Text Justification(文本对齐) - **应用场景**:实现文本的左对齐、居中对齐或右对齐。 - **算法思想**: - 计算每一行的字符总数。 - 根据对齐方式确定各词之间的空格数量。 - 特别注意最后一行的处理...

    airbnb 面试题库 深秋版 pdf

    12. **文本对齐(Text Justification)**:格式化文本以适应不同的显示方式。 13. **正则表达式(Regular Expression)**:使用正则表达式进行模式匹配和文本处理。 14. **水流问题(Water Drop/Water Land)**:...

Global site tag (gtag.js) - Google Analytics