zoukankan      html  css  js  c++  java
  • leetcode

    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."]
    L16.

    Return the formatted lines as:

    [
       "This    is    an",
       "example  of text",
       "justification.  "
    ]
    

    Note: Each word is guaranteed not to exceed L in length.

    class Solution {
    public:
        std::vector<std::string> fullJustify(std::vector<std::string> &words, int L) {
    		std::vector<std::string> res;
    		for(int i = 0, k, l; i < words.size(); i += k) 
    		{
    			for(k = l = 0; i + k < words.size() && l + words[i+k].size() <= L - k; k++) 
    			{
    				l += words[i+k].size();
    			}
    			std::string tmp = words[i];
    			for(int j = 0; j < k - 1; j++) 
    			{
    				if(i + k >= words.size()) tmp += " ";
    				else tmp += std::string((L - l) / (k - 1) + (j < (L - l) % (k - 1)), ' ');
    				tmp += words[i+j+1];
    			}
    			tmp += std::string(L - tmp.size(), ' ');
    			res.push_back(tmp);
    		}
    		return res;
    	}
    };


  • 相关阅读:
    Jquery日历插件e-calendar升级版
    jquery双击事件(dblclick)时,不触发单击事件(click)
    js实现的点击div区域外隐藏div区域
    IE浏览器new Date()带参返回NaN解决方法
    RequireJs中使用layer的问题
    AngularJs规范
    js调用Angular的方法
    游标cursor
    bigint数据类型
    ANSI_NULLS和QUOTED_IDENTIFIER
  • 原文地址:https://www.cnblogs.com/cxchanpin/p/6839125.html
Copyright © 2011-2022 走看看