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

方法

处理好空格的个数以及边界条件。

    public List<String> fullJustify(String[] words, int L) {
        List<String> list = new ArrayList<String>();
        if (words == null || words.length == 0) {
            return list;
        }
        int len = words.length;
        int left = 0;
        int curSum = words[0].length();
        int right = 0;
        for (int i = 1; i < len; i++) {
            if (curSum + 1 + words[i].length() <= L) {
                curSum = curSum + 1 + words[i].length();
                right = i;
            } else {
                StringBuilder builder = new StringBuilder();
                int remain = L - curSum;
                if (right == left) {
                    builder.append(words[left]);
                    for (int k = 0; k < remain; k++) {
                        builder.append(' ');
                    }
                    list.add(builder.toString());
                } else {
                    int p = remain / (right - left);
                    int q = remain % (right - left);
                    for (int k = left; k <= right; k++) {
                        if (k == left) {
                            builder.append(words[k]);
                        } else {
                            if (q > 0) {
                                builder.append(' ');
                                q--;
                            }
                            for (int j = 0; j <= p; j++) {
                                builder.append(' ');
                            }
                            builder.append(words[k]);
                        }
                    }
                    list.add(builder.toString());
                }
                left = i;
                right = i;
                curSum = words[i].length();
            }
        }
        StringBuilder builder = new StringBuilder();
        int remain = L - curSum;
        for (int k = left; k <= right; k++) {
            if (k == left) {
                builder.append(words[k]);
            } else {
                builder.append(' ');
                builder.append(words[k]);
            }
        }
        for (int i = 0; i < remain; i++) {
            builder.append(' ');
        }
        list.add(builder.toString());
        return list;
    }

Text Justification,布布扣,bubuko.com

时间: 2024-07-29 14:06:51

Text Justification的相关文章

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

[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

【Text Justification】cpp

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

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

【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

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

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

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】 Text Justification

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