【LeetCode】1417. 重新格式化字符串

题目

给你一个混合了数字和字母的字符串 s,其中的字母均为小写英文字母。
请你将该字符串重新格式化,使得任意两个相邻字符的类型都不同。也就是说,字母后面应该跟着数字,而数字后面应该跟着字母。
请你返回 重新格式化后 的字符串;如果无法按要求重新格式化,则返回一个 空字符串 。

示例 1:

输入:s = “a0b1c2”
输出:“0a1b2c”
解释:“0a1b2c” 中任意两个相邻字符的类型都不同。 “a0b1c2”, “0a1b2c”, “0c2a1b” 也是满足题目要求的答案。

示例 2:

输入:s = “leetcode”
输出:“”
解释:“leetcode” 中只有字母,所以无法满足重新格式化的条件。

示例 3:

输入:s = “1229857369”
输出:“”
解释:“1229857369” 中只有数字,所以无法满足重新格式化的条件。

示例 4:

输入:s = “covid2019”
输出:“c2o0v1i9d”

示例 5:

输入:s = “ab123”
输出:“1a2b3”

提示:

1 <= s.length <= 500
s 仅由小写英文字母和/或数字组成。

题解

使用队列

class Solution {
    
    
public:
    string reformat(string s) {
    
    
        queue<char> shuzi,zimu;
        string res = "";
        for(char c:s)
        {
    
    
            if(c>='0' && c<='9')
                shuzi.push(c);
            else
                zimu.push(c);
        }

        int shuzi_cnt = shuzi.size();
        int zimu_cnt = zimu.size();

        if(abs(shuzi_cnt-zimu_cnt)>=2)
            return "";
        else if(shuzi_cnt >= zimu_cnt)
        {
    
    
            while(!shuzi.empty())
            {
    
    
                res += shuzi.front();
                shuzi.pop();
                if(!zimu.empty())
                {
    
    
                    res += zimu.front();
                    zimu.pop();
                }
            }
        }
        else
        {
    
    
            while(!zimu.empty())
            {
    
    
                res += zimu.front();
                zimu.pop();
                if(!shuzi.empty())
                {
    
    
                    res += shuzi.front();
                    shuzi.pop();
                }
            }
        }
        return res;
    }
};

猜你喜欢

转载自blog.csdn.net/qq_45972928/article/details/126294336