leetcode_68

淳属虚构 · · 410 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Golang:

思路:刚开始看题会觉得有些麻烦,但实际上,也没啥技巧,就是处理字符串

代码如下:

func fullJustify(words []string, maxWidth int) []string {
    var wordlist []string
    var res []string
    j,length:=0,0
    for j<len(words){
        if len(wordlist)==0{
            wordlist=append(wordlist,words[j])
            length+=len(words[j])
        }else{
            if length+len(words[j])+len(wordlist)>maxWidth{
                //结束,处理wordlist
                handleWordList(wordlist,&res,length,maxWidth)
                length=len(words[j])
                wordlist=[]string{words[j]}
            }else {
                wordlist=append(wordlist, words[j])
                length+=len(words[j])
            }
        }
        j++
    }
    handleLastWordList(wordlist,&res,length,maxWidth)
    return res
}
func handleWordList(wl []string,res *[]string,length,maxWidth int) {
    var temp strings.Builder
    if len(wl)==1{
        temp.WriteString(wl[0])
        for i:=0;i<maxWidth-length;i++{
            temp.WriteByte(' ')
        }
    }else{
        space:=maxWidth-length
        avgspace:=space/(len(wl)-1)
        remain:=space%(len(wl)-1)
        temp.WriteString(wl[0])
        for i:=1;i<len(wl);i++{
            for j:=0;j<avgspace;j++{
                temp.WriteByte(' ')
            }
            if i-1<remain{
                temp.WriteByte(' ')
            }
            temp.WriteString(wl[i])
        }
    }
    *res=append(*res,temp.String())
}

func handleLastWordList(wl []string,res *[]string,length,maxWidth int) {
    var temp strings.Builder
    temp.WriteString(wl[0])
    for i:=1;i<len(wl);i++{
        temp.WriteByte(' ')
        temp.WriteString(wl[i])
    }
    remain:=(len(wl)-1)*1+length
    for i:=0;i<maxWidth-remain;i++{
        temp.WriteByte(' ')
    }
    *res=append(*res,temp.String())
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:淳属虚构

查看原文:leetcode_68

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

410 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传