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

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.

这道题有点像airbnb的oa题目,分页的题,只是这题是分行,需要注意很多细节。

首先想到什么条件下是需要分行的,就是当前行的单词长度 + 每两个单词中间空一行 + 下一个单词 > maxWidth的时候,所以需要变量count记录当前有多少个单词,那么空格数就是count-1, 需要widthLen记录当前行所有单词的长度和。当不够一行的时候就不断循环增加count和wordLen,当放不下一行是开始构建当前行并加入到返回vector res里。

构建当前行row时,需要计算每两个单词中间放多少个空格,用space = (maxWidth - wordLen)/ (count - 1)就是每两个单词中间应放的空格数,但是这个时候要想到可能空格数不是能整除的,题目说明了为了更加even要平均地把多余空格按照从左到右的顺序依次放入,所以多计算一个变量extraSpace = (maxWidth - wordLen)% (count - 1)。

还有一个细节就是当一行只能放进一个word时,要左对齐,空格都放在右面,要单独处理。

最后一行也要单独处理:1一个单词,2多个单词。

class Solution {
public:
    vector<string> fullJustify(vector<string>& words, int maxWidth) {
        vector<string> res;
        int count = 0;
        int wordLen = 0;
        int line = 0;
        int i = 0;
        int start = 0;
        while (i < words.size()) {
            //cout << words[i]<<endl;
            wordLen += words[i].size();
            count++;
            line = count - 1 + wordLen;
            if (line <= maxWidth) {
                i++;
            }
            else {
                count--;
                wordLen -= words[i].size();
                //cout << count << endl;
                //cout << wordLen << endl;
                string row = "";
                if (count == 1) {
                    row += words[start];
                    int space = maxWidth - words[start].size();
                    while (space > 0) {
                        row += ' ';
                        space--;
                    } 
                    //cout << row << endl;
                    res.push_back(row);
                }
                else {
                    //cout << "========="<<endl;
                    int space = (maxWidth - wordLen) / (count - 1);
                    //cout<< space << endl;
                    int extraSpace = (maxWidth - wordLen) % (count - 1);
                    //cout << extraSpace << endl;
                    while (count > 1) {//注意这个地方是>1不是0,因为最后一个后面不用加空格,跳出循环单独添加
                        row += words[start++];
                        int j = 0;
                        while (j < space) {
                            row += ' ';
                            j++;//注意更新循环变量
                        }
                        if (extraSpace > 0) {
                            row += ' ';
                            extraSpace--;
                        }
                       
                        count--;
                    }
                    row += words[start];
                    res.push_back(row);
                }
                count = 0;//更新count不然count = 1 时并不会减到0
                wordLen = 0;
                start = i;
             }
        }
        //last line
        string row = "";
        
        if (count == 1) {
            row += words[start];
            int space = maxWidth - words[start].size();
            while (space > 0) {
                row += ' ';
                space--;
            } 
            res.push_back(row);
        }
        else {
            while (count > 1) {//注意这个地方是>1不是0,因为最后一个后面不用加空格,跳出循环单独添加
                row += words[start++];
                row += ' ';
                count--;
            }
            if (line == maxWidth) row += words[start];
            else {
                row += words[start];
                int space = maxWidth - line;
                while (space > 0) {
                    row += ' ';
                    space--;
                }
            }
            res.push_back(row);
        }
        return res;
    }
};

细节:

1 注意如何处理每行的末尾,末尾单词后面不用加空格

2 while如何循环,避免死循环,记得更新循环变量

3



import PySimpleGUI as sg layout1 = [ [sg.T("请输入挡土墙参数",text_color="red",size=30,font=10,justification="center",pad=(10))], [sg.Text('内斜坡高度(m)',size=30),sg.InputText(size=5,key="a")],[sg.Text('挡土墙顶部到墙趾高度(m)',size=30), sg.InputText(size=5,key="b")], [sg.Text('顶面荷载边缘距离内边坡的水平距离(m)',size=30), sg.InputText(size=5,key="c")],[sg.Text('内边坡宽度(m)',size=30), sg.InputText(size=5,key="d")], [sg.Text('列车荷载分布宽度(m)',size=30), sg.InputText(size=5,key="e")],[sg.Text('墙背倾角(°)',size=30), sg.InputText(size=5,key="f")], [sg.Text('墙底倾斜角度(°)',size=30), sg.InputText(size=5,key="g")],[sg.Text('墙背与土体摩擦角(°)',size=30), sg.InputText(size=5,key="h")], [sg.Text('挡土墙底部水平宽度(m)',size=30), sg.InputText(size=5,key="i")],[sg.Text('挡土墙重度(γ/m³)',size=30), sg.InputText(size=5,key="j")], [sg.Text('基底摩擦系数设计值',size=30),sg.InputText(size=5,key="k")] ] layout2=[ [sg.T('请输入随机变量统计特征',text_color="red",font=10,justification="center",size=30,pad=(10,10))], [sg.Text('土体重度平均值',size=30),sg.InputText(size=5)],[sg.Text('土体重度标准差',size=30),sg.InputText(size=5)],[sg.Text('土体内摩擦角平均值',size=30),sg.InputText(size=5)], [sg.Text('土体内摩擦角标准差',size=30),sg.InputText(size=5)],[sg.Text('列车荷载等效土柱高度平均值',size=30),sg.InputText(size=5)],[sg.Text('列车荷载等效土柱高度标准差',size=30),sg.InputText(size=5)] ] layout3=[[sg.T("结果分析",text_color="red",font=10)], [sg.Output(size=(80,15),key="jieguo")], [sg.Button('计算'), sg.Button('关闭')] ] layout=[ [sg.Column(layout1),sg.Column(layout2)], [layout3] ] # 创造窗口 window = sg.Window('Window Title', layout,finalize=True) while True: event, values = window.read() if event == "计算" : a=values["a"] b=values["b"] appl=a/b print('-----------------失效概率抽样计算结果-------------') print("失效概率:",appl) if event == "关闭": break window.close()
最新发布
07-17
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值