- 浏览: 141393 次
-
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
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."]
L: 16.
Return the formatted lines as:
[
"This is an",
"example of text",
"justification. "
]
Note: Each word is guaranteed not to exceed L in length.
[分析] 该题算法本身不复杂,考察的是对边界条件的处理。题意把握上主要两点:1)当某行只能放下一个单词时,空格全部放在右边 2)最后一行单词间仅有一个空格,多余空格均放在右边。详细分析参考http://blog.csdn.net/linhuanmars/article/details/24063271
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."]
L: 16.
Return the formatted lines as:
[
"This is an",
"example of text",
"justification. "
]
Note: Each word is guaranteed not to exceed L in length.
[分析] 该题算法本身不复杂,考察的是对边界条件的处理。题意把握上主要两点:1)当某行只能放下一个单词时,空格全部放在右边 2)最后一行单词间仅有一个空格,多余空格均放在右边。详细分析参考http://blog.csdn.net/linhuanmars/article/details/24063271
public class Solution { public List<String> fullJustify(String[] words, int maxWidth) { List<String> result = new ArrayList<String>(); if (words == null || words.length == 0 || maxWidth < 0) return result; int count = 0, last = 0; for (int i = 0; i < words.length; i++) { if (count + words[i].length() + (i - last) > maxWidth) { int extraNum = 0, spaceNum = 0; if (i - 1 > last) { spaceNum = (maxWidth - count) / (i - 1 - last); extraNum = (maxWidth - count) % (i - 1 - last); } StringBuilder avgSpaces = new StringBuilder(); while (spaceNum > 0) { avgSpaces.append(" "); spaceNum--; } StringBuilder row = new StringBuilder(); for (int j = last; j < i - 1; j++) { row.append(words[j]); row.append(avgSpaces.toString()); if (extraNum > 0) { row.append(" "); extraNum--; } } row.append(words[i - 1]); for (int j = row.length(); j < maxWidth; j++) { row.append(" "); } result.add(row.toString()); count = 0; last = i; } count += words[i].length(); } // deal with the last row which sometimes not processed int the above loop StringBuilder row = new StringBuilder(); for (int i = last; i < words.length; i++) { row.append(words[i]); if (row.length() < maxWidth) row.append(" "); } while (row.length() < maxWidth) row.append(" "); result.add(row.toString()); return result; } }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1121[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Read N Characters Given Read4 II - Call Multiple Times
2015-08-28 09:00 876The API: int read4(char *buf) r ... -
Leetcode - Read N Characters Given Read4
2015-08-27 20:56 711The API: int read4(char *buf) r ... -
Leetcode - One Edit Distance
2015-08-27 20:26 566[分析] 两字符串相同或者长度差异大于等于2都不符合要求,只需 ... -
Leetcode - Isomorphic Strings
2015-08-23 09:51 570[分析] 思路1:维护两个哈希表,char[] map, bo ... -
Leetcode - Group Shifted String
2015-08-22 16:20 1751Given a string, we can "sh ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1115A strobogrammatic number is a n ... -
Leetcode - Valid Number
2015-06-21 10:42 683Validate if a given string is n ... -
Leetcode - Substring with Contentaion of All Words
2015-06-18 10:01 529You are given a string, s, and ... -
Leetcode - Simplify Path
2015-06-17 21:58 447Given an absolute path for a fi ... -
Leetcode - ZigZag Conversion
2015-06-15 21:31 564The string "PAYPALISHIRING ... -
Leetcode - Multiply String
2015-06-15 09:39 705Given two numbers represented a ... -
Leetcode - Minimum Window String
2015-06-14 19:33 602Given a string S and a string T ... -
Leetcode - Longest Substring Without Repeating Characters
2015-06-14 15:34 581Given a string, find the length ... -
Leetcode - Implement strStr()
2015-06-13 19:54 775Implement strStr(). Returns the ... -
Leetcode - Add Binary
2015-06-13 17:34 320Given two binary strings, retu ... -
Leetcode - Compare Version Numbers
2015-06-13 16:36 484Compare two version numbers ver ... -
Leetcode - Shortest Palindrome
2015-06-13 10:55 580Given a string S, you are allow ... -
Leetcode - Longest Palindrome Substring
2015-06-11 09:48 472<div class="iteye-blog- ...
相关推荐
LeetCode 题号 68 的题目是 "Text Justification"(文本对齐)。这个题目的目标是在给定的单词数组和最大宽度的情况下,将这些单词进行合理地排列,使得每一行都能够达到最大的宽度,并且左右对齐。这道题目要求输出...
今天我们将要探讨的文件标题"C语言-leetcode题解之68-text-justification.c",实际上是一份针对leetcode网站上第68题“文本对齐”问题的C语言解决方案。 此问题的具体要求是,给定一个单词列表和一个长度限制,编写...
- Text Justification: 给定一个单词数组和一个长度 maxWidth,设计一个方法使得每行中单词之间的空间均匀分配,并且左右两端对齐。 - Sqrt(x): 计算并返回x的平方根,要求不使用库函数。 - Climbing Stairs: 假设你...
# [LeetCode](https://leetcode.com/problemset/algorithms/)  [![License]...
- Text Justification:该题目要求对文本进行左右对齐处理,是字符串处理和编程思维的综合应用。 接下来,我们看下Amazon的题目集合: - Validate Binary Search Tree:验证给定的二叉树是否为有效的二叉搜索树...
#### Text Justification(文本对齐) - **应用场景**:实现文本的左对齐、居中对齐或右对齐。 - **算法思想**: - 计算每一行的字符总数。 - 根据对齐方式确定各词之间的空格数量。 - 特别注意最后一行的处理...
12. **文本对齐(Text Justification)**:格式化文本以适应不同的显示方式。 13. **正则表达式(Regular Expression)**:使用正则表达式进行模式匹配和文本处理。 14. **水流问题(Water Drop/Water Land)**:...