mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
63 lines
2.8 KiB
HTML
63 lines
2.8 KiB
HTML
<p>给你一个字符串 <code>s</code> ,请你根据下面的算法重新构造字符串:</p>
|
||
|
||
<ol>
|
||
<li>从 <code>s</code> 中选出 <strong>最小</strong> 的字符,将它 <strong>接在</strong> 结果字符串的后面。</li>
|
||
<li>从 <code>s</code> 剩余字符中选出 <strong>最小</strong> 的字符,且该字符比上一个添加的字符大,将它 <strong>接在</strong> 结果字符串后面。</li>
|
||
<li>重复步骤 2 ,直到你没法从 <code>s</code> 中选择字符。</li>
|
||
<li>从 <code>s</code> 中选出 <strong>最大</strong> 的字符,将它 <strong>接在</strong> 结果字符串的后面。</li>
|
||
<li>从 <code>s</code> 剩余字符中选出 <strong>最大</strong> 的字符,且该字符比上一个添加的字符小,将它 <strong>接在</strong> 结果字符串后面。</li>
|
||
<li>重复步骤 5 ,直到你没法从 <code>s</code> 中选择字符。</li>
|
||
<li>重复步骤 1 到 6 ,直到 <code>s</code> 中所有字符都已经被选过。</li>
|
||
</ol>
|
||
|
||
<p>在任何一步中,如果最小或者最大字符不止一个 ,你可以选择其中任意一个,并将其添加到结果字符串。</p>
|
||
|
||
<p>请你返回将 <code>s</code> 中字符重新排序后的 <strong>结果字符串</strong> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>s = "aaaabbbbcccc"
|
||
<strong>输出:</strong>"abccbaabccba"
|
||
<strong>解释:</strong>第一轮的步骤 1,2,3 后,结果字符串为 result = "abc"
|
||
第一轮的步骤 4,5,6 后,结果字符串为 result = "abccba"
|
||
第一轮结束,现在 s = "aabbcc" ,我们再次回到步骤 1
|
||
第二轮的步骤 1,2,3 后,结果字符串为 result = "abccbaabc"
|
||
第二轮的步骤 4,5,6 后,结果字符串为 result = "abccbaabccba"
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>s = "rat"
|
||
<strong>输出:</strong>"art"
|
||
<strong>解释:</strong>单词 "rat" 在上述算法重排序以后变成 "art"
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>s = "leetcode"
|
||
<strong>输出:</strong>"cdelotee"
|
||
</pre>
|
||
|
||
<p><strong>示例 4:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>s = "ggggggg"
|
||
<strong>输出:</strong>"ggggggg"
|
||
</pre>
|
||
|
||
<p><strong>示例 5:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>s = "spo"
|
||
<strong>输出:</strong>"ops"
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= s.length <= 500</code></li>
|
||
<li><code>s</code> 只包含小写英文字母。</li>
|
||
</ul>
|