68 | Text Justification |
class Solution { public: vector<string> fullJustify(vector<string> &words, int L) { if(words.empty()){ return words; } if(L==0){ return words; } const int N = words.size(); int curLen=0; int lastLen=0; vector<string> ans; vector<string> str; for(int i=0;i<N;i++) { if(str.size()>0) { curLen ++; } curLen += words[i].size(); if(curLen<=L) { str.push_back(words[i]); lastLen=curLen; } else { //over if(str.size()==1) { string newString = str[0]; if(L>str[0].size()) { newString += string(L-str[0].size(),' '); } ans.push_back(newString); } else { int tabCount = str.size()-1; int q = (L-lastLen)/tabCount; int r = (L-lastLen) - q*tabCount; string newString ; int j=0; for(;j<tabCount;j++) { newString += str[j]; if(j<r){ string spaces(q+2,' '); newString += spaces; } else { string spaces(q+1,' '); newString += spaces; } } newString += str[j]; ans.push_back(newString); } str.clear(); str.push_back(words[i]); lastLen = curLen = words[i].size(); } } if(str.size()==1) { string newString = str[0]; if(L>str[0].size()) { newString += string(L-str[0].size(),' '); } ans.push_back(newString); } else { int tabCount = str.size()-1; string newString ; int j=0; int len=0; for(;j<tabCount;j++) { newString += str[j]; newString +=" "; len+=str[j].size()+1; } newString += str[j]; len += str[j].size(); newString += string(L-len,' '); ans.push_back(newString); } return ans; } };
这题,其实没啥可说的,需要的是细心,这个是常见的阅读器排版问题。嗯,错过很多次,慢慢修改就对了。
相关推荐
javascript js_leetcode题解之68-text-justification.js
- Text Justification:该题目要求对文本进行左右对齐处理,是字符串处理和编程思维的综合应用。 接下来,我们看下Amazon的题目集合: - Validate Binary Search Tree:验证给定的二叉树是否为有效的二叉搜索树...
# [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License]...
- Text Justification: 给定一个单词数组和一个长度 maxWidth,设计一个方法使得每行中单词之间的空间均匀分配,并且左右两端对齐。 - Sqrt(x): 计算并返回x的平方根,要求不使用库函数。 - Climbing Stairs: 假设你...
`mitab_c_get_text_fgcolor`和`mitab_c_get_text_bgcolor`获取前景和背景颜色,`mitab_c_get_text_justification`和`mitab_c_get_text_spacing`则涉及文本对齐方式和间距。 通过这些API,开发者可以构建自己的应用...
# 给定一个单词数组和一个长度 maxWidth...# words = ["This", "is", "an", "example", "of", "text", "justification."] # maxWidth = 16 # 输出: # [ # "This is an", # "example of text", # "justification. " # ]
1. **全断言(Text Justification)**:全断言是指文本在指定的宽度内均匀分布,使得每行的两端都对齐。在Android中,`TextView`默认并不支持全断言,但TextJustify-AndroidDemo库通过算法实现了这一功能,即使在多...
AddChild(new TextWidget("Hello World", 320, 240, justification: Font.Justification.Center)); ShowAsSystemWindow(); } // and just for fun lets also draw a circle public ...
本课件"ch14 Economics and Justification of"着重探讨了如何评估和量化EC投资的效益,以及面临的挑战和经济原理。 首先,EC投资的合理性证明涉及到明确投资需求、实施方法和使用指标来确定其价值。企业需要对EC...
12. **文本对齐(Text Justification)**:格式化文本以适应不同的显示方式。 13. **正则表达式(Regular Expression)**:使用正则表达式进行模式匹配和文本处理。 14. **水流问题(Water Drop/Water Land)**:...
This dissertation by H`an Thˆe and Th`anh delves into the improvement of text composition through micro-typographic extensions in the TEX typesetting system. The work focuses on two specific areas: ...
在申请IP地址空间时,公司需要填写一份IP Justification Form,详细列出所需IP地址的数量、用途以及分配策略。这份表格是向相关的IP地址管理机构(如Internet Assigned Numbers Authority, IANA,或者区域互联网注册...
在进行项目或技术投资的财务合理性分析时,IT专业人士经常被要求提供基于金融指标的业务案例,其中总拥有成本(Total Cost of Ownership,简称TCO)和投资回报率(Return on Investment,简称ROI)是至关重要的概念...
Android Full Justification About This library will provide you a way to justify text. It supports both plain text and Spannables. Additionally, the library can auto-hyphentate your displayed content ...
#### mitab_c_get_text_justification() - **函数功能**:此函数用于获取文本的对齐方式。 - **参数**: - `feature`:一个`mitab_feature`类型的值,表示特性对象。 - **返回值**:一个整型数值,表示文本的对齐...
”(Justification:预测能够轻松吸引学生的注意力,激发学生的想象力和创造力,创造一个愉快的学习氛围。) 3. 听力练习阶段(While-listening): - 广泛听活动(Extensive listening):要求学生第一次听对话,...
#### Text Justification(文本对齐) - **应用场景**:实现文本的左对齐、居中对齐或右对齐。 - **算法思想**: - 计算每一行的字符总数。 - 根据对齐方式确定各词之间的空格数量。 - 特别注意最后一行的处理...