Skip to content

Commit f28f5f1

Browse files
committed
feat: add solutions to lc problems: No.0068,1656
* No.0068.Text Justification * No.1656.Design an Ordered Stream
1 parent 8e07bc3 commit f28f5f1

File tree

9 files changed

+479
-65
lines changed

9 files changed

+479
-65
lines changed

solution/0000-0099/0068.Text Justification/README.md

+111-37
Original file line numberDiff line numberDiff line change
@@ -6,68 +6,79 @@
66

77
<!-- 这里写题目描述 -->
88

9-
<p>给定一个单词数组和一个长度&nbsp;<em>maxWidth</em>,重新排版单词,使其成为每行恰好有&nbsp;<em>maxWidth</em>&nbsp;个字符,且左右两端对齐的文本。</p>
9+
<p>给定一个单词数组&nbsp;<code>words</code> 和一个长度&nbsp;<code>maxWidth</code>&nbsp;,重新排版单词,使其成为每行恰好有&nbsp;<code>maxWidth</code>&nbsp;个字符,且左右两端对齐的文本。</p>
1010

11-
<p>你应该使用&ldquo;贪心算法&rdquo;来放置给定的单词;也就是说,尽可能多地往每行中放置单词。必要时可用空格&nbsp;<code>&#39; &#39;</code>&nbsp;填充,使得每行恰好有 <em>maxWidth</em>&nbsp;个字符。</p>
11+
<p>你应该使用 “<strong>贪心算法</strong>” 来放置给定的单词;也就是说,尽可能多地往每行中放置单词。必要时可用空格&nbsp;<code>' '</code>&nbsp;填充,使得每行恰好有 <em>maxWidth</em>&nbsp;个字符。</p>
1212

1313
<p>要求尽可能均匀分配单词间的空格数量。如果某一行单词间的空格不能均匀分配,则左侧放置的空格数要多于右侧的空格数。</p>
1414

1515
<p>文本的最后一行应为左对齐,且单词之间不插入<strong>额外的</strong>空格。</p>
1616

17-
<p><strong>说明:</strong></p>
17+
<p><strong>注意:</strong></p>
1818

1919
<ul>
2020
<li>单词是指由非空格字符组成的字符序列。</li>
2121
<li>每个单词的长度大于 0,小于等于&nbsp;<em>maxWidth</em>。</li>
2222
<li>输入单词数组 <code>words</code>&nbsp;至少包含一个单词。</li>
2323
</ul>
2424

25-
<p><strong>示例:</strong></p>
25+
<p>&nbsp;</p>
2626

27-
<pre><strong>输入:</strong>
28-
words = [&quot;This&quot;, &quot;is&quot;, &quot;an&quot;, &quot;example&quot;, &quot;of&quot;, &quot;text&quot;, &quot;justification.&quot;]
29-
maxWidth = 16
27+
<p><strong>示例 1:</strong></p>
28+
29+
<pre>
30+
<strong>输入: </strong>words = ["This", "is", "an", "example", "of", "text", "justification."], maxWidth = 16
3031
<strong>输出:</strong>
3132
[
32-
&nbsp; &nbsp;&quot;This &nbsp; &nbsp;is &nbsp; &nbsp;an&quot;,
33-
&nbsp; &nbsp;&quot;example &nbsp;of text&quot;,
34-
&nbsp; &nbsp;&quot;justification. &nbsp;&quot;
33+
&nbsp; &nbsp;"This &nbsp; &nbsp;is &nbsp; &nbsp;an",
34+
&nbsp; &nbsp;"example &nbsp;of text",
35+
&nbsp; &nbsp;"justification. &nbsp;"
3536
]
3637
</pre>
3738

3839
<p><strong>示例&nbsp;2:</strong></p>
3940

40-
<pre><strong>输入:</strong>
41-
words = [&quot;What&quot;,&quot;must&quot;,&quot;be&quot;,&quot;acknowledgment&quot;,&quot;shall&quot;,&quot;be&quot;]
42-
maxWidth = 16
41+
<pre>
42+
<strong>输入:</strong>words = ["What","must","be","acknowledgment","shall","be"], maxWidth = 16
4343
<strong>输出:</strong>
4444
[
45-
&nbsp; &quot;What &nbsp; must &nbsp; be&quot;,
46-
&nbsp; &quot;acknowledgment &nbsp;&quot;,
47-
&nbsp; &quot;shall be &nbsp; &nbsp; &nbsp; &nbsp;&quot;
45+
&nbsp; "What &nbsp; must &nbsp; be",
46+
&nbsp; "acknowledgment &nbsp;",
47+
&nbsp; "shall be &nbsp; &nbsp; &nbsp; &nbsp;"
4848
]
49-
<strong>解释: </strong>注意最后一行的格式应为 &quot;shall be &quot; 而不是 &quot;shall be&quot;,
49+
<strong>解释: </strong>注意最后一行的格式应为 "shall be " 而不是 "shall be",
5050
&nbsp; 因为最后一行应为左对齐,而不是左右两端对齐。
5151
第二行同样为左对齐,这是因为这行只包含一个单词。
5252
</pre>
5353

5454
<p><strong>示例&nbsp;3:</strong></p>
5555

56-
<pre><strong>输入:</strong>
57-
words = [&quot;Science&quot;,&quot;is&quot;,&quot;what&quot;,&quot;we&quot;,&quot;understand&quot;,&quot;well&quot;,&quot;enough&quot;,&quot;to&quot;,&quot;explain&quot;,
58-
&nbsp; &quot;to&quot;,&quot;a&quot;,&quot;computer.&quot;,&quot;Art&quot;,&quot;is&quot;,&quot;everything&quot;,&quot;else&quot;,&quot;we&quot;,&quot;do&quot;]
59-
maxWidth = 20
56+
<pre>
57+
<strong>输入:</strong>words = ["Science","is","what","we","understand","well","enough","to","explain","to","a","computer.","Art","is","everything","else","we","do"],maxWidth = 20
6058
<strong>输出:</strong>
6159
[
62-
&nbsp; &quot;Science &nbsp;is &nbsp;what we&quot;,
63-
&quot;understand &nbsp; &nbsp; &nbsp;well&quot;,
64-
&nbsp; &quot;enough to explain to&quot;,
65-
&nbsp; &quot;a &nbsp;computer. &nbsp;Art is&quot;,
66-
&nbsp; &quot;everything &nbsp;else &nbsp;we&quot;,
67-
&nbsp; &quot;do &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;
60+
&nbsp; "Science &nbsp;is &nbsp;what we",
61+
"understand &nbsp; &nbsp; &nbsp;well",
62+
&nbsp; "enough to explain to",
63+
&nbsp; "a &nbsp;computer. &nbsp;Art is",
64+
&nbsp; "everything &nbsp;else &nbsp;we",
65+
&nbsp; "do &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"
6866
]
6967
</pre>
7068

69+
<p>&nbsp;</p>
70+
71+
<p><strong>提示:</strong></p>
72+
73+
<ul>
74+
<li><code>1 &lt;= words.length &lt;= 300</code></li>
75+
<li><code>1 &lt;= words[i].length &lt;= 20</code></li>
76+
<li><code>words[i]</code>&nbsp;由小写英文字母和符号组成</li>
77+
<li><code>1 &lt;= maxWidth &lt;= 100</code></li>
78+
<li><code>words[i].length &lt;= maxWidth</code></li>
79+
</ul>
80+
81+
7182
## 解法
7283

7384
<!-- 这里可写通用的实现逻辑 -->
@@ -143,7 +154,7 @@ class Solution {
143154
if (i == n || t.size() == 1) {
144155
// this is the last line or only one word in a line
145156
String left = String.join(" ", t);
146-
String right = blank(maxWidth - left.length());
157+
String right = " ".repeat(maxWidth - left.length());
147158
ans.add(left + right);
148159
if (i == n) {
149160
break;
@@ -169,22 +180,14 @@ class Solution {
169180
int base = n / cnt;
170181
int mod = n % cnt;
171182
for (int i = 0, j = 0; i < cnt; ++i, ++j) {
172-
StringBuilder sb = new StringBuilder(blank(base));
183+
StringBuilder sb = new StringBuilder(" ".repeat(base));
173184
if (j < mod) {
174185
sb.append(' ');
175186
}
176187
ans.add(sb.toString());
177188
}
178189
return ans;
179190
}
180-
181-
private String blank(int n) {
182-
StringBuilder sb = new StringBuilder();
183-
while (n-- > 0) {
184-
sb.append(' ');
185-
}
186-
return sb.toString();
187-
}
188191
}
189192
```
190193

@@ -283,6 +286,77 @@ func fullJustify(words []string, maxWidth int) []string {
283286
}
284287
```
285288

289+
### **C#**
290+
291+
```cs
292+
using System.Collections.Generic;
293+
using System.Linq;
294+
using System.Text;
295+
296+
public class Solution {
297+
public IList<string> FullJustify(string[] words, int maxWidth) {
298+
var result = new List<string>();
299+
var buffer = new List<string>();
300+
var sb = new StringBuilder();
301+
var len = 0;
302+
303+
for (var i = 0; i < words.Length; ++i)
304+
{
305+
var newLen = words[i].Length + (len == 0 ? 0 : len + 1);
306+
if (newLen <= maxWidth)
307+
{
308+
buffer.Add(words[i]);
309+
len = newLen;
310+
}
311+
else
312+
{
313+
if (buffer.Count == 1)
314+
{
315+
sb.Append(buffer[0]);
316+
sb.Append(' ', maxWidth - buffer[0].Length);
317+
}
318+
else
319+
{
320+
var spaceCount = maxWidth - len + buffer.Count - 1;
321+
for (var j = 0; j < buffer.Count - 1; ++j)
322+
{
323+
sb.Append(buffer[j]);
324+
var spaceToAdd = (spaceCount - 1) / (buffer.Count - j - 1) + 1;
325+
sb.Append(' ', spaceToAdd);
326+
spaceCount -= spaceToAdd;
327+
}
328+
sb.Append(buffer.Last());
329+
}
330+
result.Add(sb.ToString());
331+
buffer.Clear();
332+
buffer.Add(words[i]);
333+
sb.Clear();
334+
len = words[i].Length;
335+
}
336+
}
337+
338+
if (buffer.Count > 0)
339+
{
340+
for (var j = 0; j < buffer.Count; ++j)
341+
{
342+
if (sb.Length > 0)
343+
{
344+
sb.Append(' ');
345+
}
346+
sb.Append(buffer[j]);
347+
}
348+
if (sb.Length < maxWidth)
349+
{
350+
sb.Append(' ', maxWidth - sb.Length);
351+
}
352+
result.Add(sb.ToString());
353+
}
354+
355+
return result;
356+
}
357+
}
358+
```
359+
286360
### **...**
287361

288362
```

solution/0000-0099/0068.Text Justification/README_EN.md

+83-18
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44

55
## Description
66

7-
<p>Given an array of words and a width&nbsp;<em>maxWidth</em>, format the text such that each line has exactly <em>maxWidth</em> characters and is fully (left and right) justified.</p>
7+
<p>Given an array of strings <code>words</code> and a width <code>maxWidth</code>, format the text such that each line has exactly <code>maxWidth</code> characters and is fully (left and right) justified.</p>
88

9-
<p>You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces <code>&#39; &#39;</code> when necessary so that each line has exactly <em>maxWidth</em> characters.</p>
9+
<p>You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces <code>&#39; &#39;</code> when necessary so that each line has exactly <code>maxWidth</code> characters.</p>
1010

11-
<p>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.</p>
11+
<p>Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line does not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right.</p>
1212

13-
<p>For the last line of text, it should be left justified and no <strong>extra</strong> space is inserted between words.</p>
13+
<p>For the last line of text, it should be left-justified and no extra space is inserted between words.</p>
1414

1515
<p><strong>Note:</strong></p>
1616

1717
<ul>
18-
<li>A word is defined as a character sequence consisting&nbsp;of non-space characters only.</li>
19-
<li>Each word&#39;s length is&nbsp;guaranteed to be greater than 0 and not exceed <em>maxWidth</em>.</li>
20-
<li>The input array <code>words</code>&nbsp;contains at least one word.</li>
18+
<li>A word is defined as a character sequence consisting of non-space characters only.</li>
19+
<li>Each word&#39;s length is guaranteed to be greater than 0 and not exceed maxWidth.</li>
20+
<li>The input array <code>words</code> contains at least one word.</li>
2121
</ul>
2222

2323
<p>&nbsp;</p>
@@ -125,10 +125,11 @@ class Solution:
125125

126126
```java
127127
class Solution {
128+
128129
public List<String> fullJustify(String[] words, int maxWidth) {
129130
List<String> ans = new ArrayList<>();
130131
int n = words.length;
131-
for (int i = 0; i < n; ) {
132+
for (int i = 0; i < n;) {
132133
List<String> t = new ArrayList<>();
133134
int cnt = words[i].length();
134135
t.add(words[i++]);
@@ -139,7 +140,7 @@ class Solution {
139140
if (i == n || t.size() == 1) {
140141
// this is the last line or only one word in a line
141142
String left = String.join(" ", t);
142-
String right = blank(maxWidth - left.length());
143+
String right = " ".repeat(maxWidth - left.length());
143144
ans.add(left + right);
144145
if (i == n) {
145146
break;
@@ -165,23 +166,16 @@ class Solution {
165166
int base = n / cnt;
166167
int mod = n % cnt;
167168
for (int i = 0, j = 0; i < cnt; ++i, ++j) {
168-
StringBuilder sb = new StringBuilder(blank(base));
169+
StringBuilder sb = new StringBuilder(" ".repeat(base));
169170
if (j < mod) {
170171
sb.append(' ');
171172
}
172173
ans.add(sb.toString());
173174
}
174175
return ans;
175176
}
176-
177-
private String blank(int n) {
178-
StringBuilder sb = new StringBuilder();
179-
while (n-- > 0) {
180-
sb.append(' ');
181-
}
182-
return sb.toString();
183-
}
184177
}
178+
185179
```
186180

187181
### **C++**
@@ -279,6 +273,77 @@ func fullJustify(words []string, maxWidth int) []string {
279273
}
280274
```
281275

276+
### **C#**
277+
278+
```cs
279+
using System.Collections.Generic;
280+
using System.Linq;
281+
using System.Text;
282+
283+
public class Solution {
284+
public IList<string> FullJustify(string[] words, int maxWidth) {
285+
var result = new List<string>();
286+
var buffer = new List<string>();
287+
var sb = new StringBuilder();
288+
var len = 0;
289+
290+
for (var i = 0; i < words.Length; ++i)
291+
{
292+
var newLen = words[i].Length + (len == 0 ? 0 : len + 1);
293+
if (newLen <= maxWidth)
294+
{
295+
buffer.Add(words[i]);
296+
len = newLen;
297+
}
298+
else
299+
{
300+
if (buffer.Count == 1)
301+
{
302+
sb.Append(buffer[0]);
303+
sb.Append(' ', maxWidth - buffer[0].Length);
304+
}
305+
else
306+
{
307+
var spaceCount = maxWidth - len + buffer.Count - 1;
308+
for (var j = 0; j < buffer.Count - 1; ++j)
309+
{
310+
sb.Append(buffer[j]);
311+
var spaceToAdd = (spaceCount - 1) / (buffer.Count - j - 1) + 1;
312+
sb.Append(' ', spaceToAdd);
313+
spaceCount -= spaceToAdd;
314+
}
315+
sb.Append(buffer.Last());
316+
}
317+
result.Add(sb.ToString());
318+
buffer.Clear();
319+
buffer.Add(words[i]);
320+
sb.Clear();
321+
len = words[i].Length;
322+
}
323+
}
324+
325+
if (buffer.Count > 0)
326+
{
327+
for (var j = 0; j < buffer.Count; ++j)
328+
{
329+
if (sb.Length > 0)
330+
{
331+
sb.Append(' ');
332+
}
333+
sb.Append(buffer[j]);
334+
}
335+
if (sb.Length < maxWidth)
336+
{
337+
sb.Append(' ', maxWidth - sb.Length);
338+
}
339+
result.Add(sb.ToString());
340+
}
341+
342+
return result;
343+
}
344+
}
345+
```
346+
282347
### **...**
283348

284349
```

0 commit comments

Comments
 (0)