LeetCode——Text Justification

本文介绍了一个文本格式化问题,即如何将给定的单词数组按照指定长度L进行排版,确保每行恰好包含L个字符,并实现左对齐或两端对齐的效果。详细解释了处理逻辑,包括对最后一行的特殊处理。

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

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.

» Solve this problem


题目不难,就是字符串的处理。

把逻辑理清楚:

1.对每一行,放尽量多的单词,长度不能超过L,用尽可能平均的空格分隔单词;

2.对最后一行,用一个空格分隔单词,最后剩余部分用空格填充。


class Solution {
private:
    string handle_normal(vector<string> &word, int L, int wordL) {
        string answer;
        if (word.size() == 1) {
    		answer += word[0];
    		for (int i = 0; i < L - wordL; i++) {
    			answer += " ";
    		}
    		return answer;
    	}
        int d = (L - wordL) / (word.size() - 1);
        int r = (L - wordL) % (word.size() - 1);
        answer = word[0];
        for (int i = 1; i < word.size(); i++) {
            for (int j = 0; j < d; j++) {
                answer += " ";
            }
            if (r > 0) {
                answer += " ";
                r--;
            }
            answer += word[i];
        }
        return answer;
    }
    
    string handle_end(vector<string> &word, int L, int count) {
        string answer;
        answer = word[0];
        for (int i = 1; i < word.size(); i++) {
            answer += " " + word[i];
        }
        for (int i = 0; i < L - count; i++) {
            answer += " ";
        }
        return answer;
    }
    
public:
    vector<string> fullJustify(vector<string> &words, int L) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        vector<string> ans;
        vector<string> selWord;
        int count = -1, wordL = 0;
        for (vector<string>::iterator iter = words.begin(); iter != words.end(); iter++) {
            if (count + iter->length() + 1 > L) {
                ans.push_back(handle_normal(selWord, L, wordL));
                selWord.clear();
                count = -1;
                wordL = 0;
            }
            count += 1 + iter->length();
            wordL += iter->length();
            selWord.push_back(*iter);
        }
        ans.push_back(handle_end(selWord, L, count));
        return ans;
    }
};


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值