1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/有序队列 [orderly-queue].html
2022-03-29 12:43:11 +08:00

35 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给定一个字符串 <code>s</code> 和一个整数 <code>k</code>&nbsp;。你可以从 <code>s</code> 的前 <code>k</code> 个字母中选择一个,并把它加到字符串的末尾。</p>
<p>返回 <em>在应用上述步骤的任意数量的移动后,字典上最小的字符串&nbsp;</em></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "cba", k = 1
<strong>输出:</strong>"acb"
<strong>解释:</strong>
在第一步中我们将第一个字符“c”移动到最后获得字符串 “bac”。
在第二步中我们将第一个字符“b”移动到最后获得最终结果 “acb”。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>s = "baaca", k = 3
<strong>输出:</strong>"aaabc"
<strong>解释:
</strong>在第一步中我们将第一个字符“b”移动到最后获得字符串 “aacab”。
在第二步中我们将第三个字符“c”移动到最后获得最终结果 “aaabc”。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= k&nbsp;&lt;= S.length&nbsp;&lt;= 1000</code></li>
<li><code>s</code>&nbsp;只由小写字母组成。</li>
</ul>