Open Ray-56 opened 3 years ago
/**
* @param {string} s
* @return {string}
*/
var sortString = function(s) {
// 桶排序
const codeOfa = 'a'.charCodeAt();
const bucket = new Array(26).fill(0);
for (let ch of s) {
bucket[ch.charCodeAt() - codeOfa]++;
}
let ret = '';
while (ret.length < s.length) {
for (let i = 0; i <= 25; i++) {
if (bucket[i]) {
ret += String.fromCharCode(i + codeOfa);
bucket[i]--;
}
}
for (let i = 25; i >= 0; i--) {
if (bucket[i]) {
ret += String.fromCharCode(i + codeOfa);
bucket[i]--;
}
}
}
return ret;
};
1370. 上升下降字符串
给你一个字符串 s ,请你根据下面的算法重新构造字符串:
在任何一步中,如果最小或者最大字符不止一个 ,你可以选择其中任意一个,并将其添加到结果字符串。
请你返回将 s 中字符重新排序后的 结果字符串 。
示例1:
示例2:
示例3:
示例4:
示例5: