zoukankan      html  css  js  c++  java
  • 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.

    这道题属于纯粹的字符串操作,要把一串单词安排成多行限定长度的字符串。主要难点在于空格的安排,首先每个单词之间必须有空格隔开,而当当前行放不下更多的单词并且字符又不能填满长度L时,我们要把空格均匀的填充在单词之间。如果剩余的空格量刚好是间隔倍数那么就均匀分配即可,否则还必须把多的一个空格放到前面的间隔里面。实现中我们维护一个count计数记录当前长度,超过之后我们计算共同的空格量以及多出一个的空格量,然后将当行字符串构造出来。最后一个细节就是最后一行不需要均匀分配空格,句尾留空就可以,所以要单独处理一下。时间上我们需要扫描单词一遍,然后在找到行尾的时候在扫描一遍当前行的单词,不过总体每个单词不会被访问超过两遍,所以总体时间复杂度是O(n)。而空间复杂度则是结果的大小(跟单词数量和长度有关,不能准确定义,如果知道最后行数r,则是O(r*L))。代码如下:

     For each line, I first figure out which words can fit in. Then spaces are added between the words. The trick here is to use mod operation to manage the spaces that can't be evenly distrubuted: the first r gaps acquire an additional space.

    public class Solution {
        public List<String> fullJustify(String[] words, int L) {
            List<String> lines = new ArrayList<String>();
            // index of first word for every line
            int index = 0;
            while (index < words.length) {
                int count = words[index].length();
                int last = index + 1;
    
      //get the last word which can fit into one line, 
                while (last < words.length) {
                    if (words[last].length() + count + 1 > L) break;
                    count += words[last].length() + 1;
                    last++;
                }
                
                StringBuilder builder = new StringBuilder();
    // how manny numbers in the one line
    
                int diff = last - index - 1;
     // if last line or number of words in the line is 1, left-justified
                if (last == words.length || diff == 0) {
                    for (int i = index; i < last; i++) {
                        builder.append(words[i] + " ");
                    }
                    builder.deleteCharAt(builder.length() - 1);
    
          // use space to suplement the length in the line
                    for (int i = builder.length(); i < L; i++) {
                        builder.append(" ");
                    }
                } else {
    // middle justified compute average number of space between two words. 
    //If space number cannot be divided, the number of space between 
     //two words in the front of the line is one more than the back.
    
                    int spaces = (L - count) / diff;
                    int r = (L - count) % diff;
                    for (int i = index; i < last; i++) {
                        builder.append(words[i]);
                        if (i < last - 1) {
                            for (int j = 0; j <= (spaces + ((i - index) < r ? 1 : 0)); j++) {
                                builder.append(" ");
                            }
                        }
                    }
                }
                lines.add(builder.toString());
      //update the index of fist word in the next line
                index = last;
            }
            
            
            return lines;
        }
    }
    

      

     输入输出略有不同,基本做法一样

  • 相关阅读:
    图片推理1
    asp.net优化方案
    将word转换成其它文件
    兼容在安装linux系统过程中不支持非原装的光模块的命令
    linux上关于网卡的操作
    SQL事务
    delphi中获取汉字的拼音首字母
    [转]SQL Server中获得EXEC后面的sql语句或者存储过程的返回值的方法
    游标写法
    DBGridEh导出EXCEL
  • 原文地址:https://www.cnblogs.com/apanda009/p/7452328.html
Copyright © 2011-2022 走看看