1370. Increasing Decreasing String

Increasing Decreasing String

Given a string s. You should re-order the string using the following algorithm:

  1. Pick the smallest character from s and append it to the result.
  2. Pick the smallest character from s which is greater than the last appended character to the result and append it.
  3. Repeat step 2 until you cannot pick more characters.
  4. Pick the largest character from s and append it to the result.
  5. Pick the largest character from s which is smaller than the last appended character to the result and append it.
  6. Repeat step 5 until you cannot pick more characters.
  7. Repeat the steps from 1 to 6 until you pick all characters from s.

In each step, If the smallest or the largest character appears more than once you can choose any occurrence and append it to the result.

Return the result string after sorting s with this algorithm.

Example 1:

Input: s = "aaaabbbbcccc"
Output: "abccbaabccba"
Explanation: After steps 1, 2 and 3 of the first iteration, result = "abc"
After steps 4, 5 and 6 of the first iteration, result = "abccba"
First iteration is done. Now s = "aabbcc" and we go back to step 1
After steps 1, 2 and 3 of the second iteration, result = "abccbaabc"
After steps 4, 5 and 6 of the second iteration, result = "abccbaabccba"

Example 2:

Input: s = "rat"
Output: "art"
Explanation: The word "rat" becomes "art" after re-ordering it with the mentioned algorithm.

Example 3:

Input: s = "leetcode"
Output: "cdelotee"

Example 4:

Input: s = "ggggggg"
Output: "ggggggg"

Example 5:

Input: s = "spo"
Output: "ops"

Constraints:

  • 1 <= s.length <= 500
  • s contains only lower-case English letters.

C++解法

class Solution {
public:
    string sortString(string s) {
        if(s.empty())
            return s;
        string result;
        vector<int> num(26);
        
        for(auto i=0;i<s.size();i++)
            num[s[i]-'a']++;
        int count=0;
        while(count<s.size()){
            for(auto i=0;i<26;i++){
                if(num[i]){
                    result+=i+'a';
                    num[i]--;
                    count++;
                }
            }
            for(auto i=25;i>=0;i--){
                if(num[i]){
                    result+=i+'a';
                    num[i]--;
                    count++;
                }
            }
                
        }
        return result;
    }
};

Java解法

class Solution {
    public String sortString(String s) {
        int[] nums=new int[26];
        
        for(char c:s.toCharArray()){
            nums[c-'a']++;
        }
        
        StringBuilder output=new StringBuilder();
        while(output.length()<s.length()){
            for(int i=0;i<26;i++){
                if(nums[i]!=0){
                    output.append((char)(i+'a'));
                    nums[i]--;
                }
            }
            for(int i=25;i>=0;i--){
                if(nums[i]!=0){
                    output.append((char)(i+'a'));
                    nums[i]--;
                }
            }
        }
        return output.toString();
    }
}

Go语言解法

func sortString(s string) string {
    nums := make([]int,26)
    for _,c := range s {
        nums[c-'a']++
    }
    
    var result string
    for len(result)<len(s) {
        for i:=0; i<26; i++ {
            if nums[i]>0 {
                result += string(i+'a')
                nums[i]--
            }
            
        }
        for i:=25; i>=0; i-- {
            if nums[i]>0 {
                result += string(i+'a')
                nums[i]--
            }
        }
    }
    return result
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值