鱼C论坛

 找回密码
 立即注册
查看: 1360|回复: 0

[技术交流] C++刷leetcode(1370. 上升下降字符串)【数据结构】

[复制链接]
发表于 2020-5-27 09:27:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目描述:
给你一个字符串 s ,请你根据下面的算法重新构造字符串:

从 s 中选出 最小 的字符,将它 接在 结果字符串的后面。
从 s 剩余字符中选出 最小 的字符,且该字符比上一个添加的字符大,将它 接在 结果字符串后面。
重复步骤 2 ,直到你没法从 s 中选择字符。
从 s 中选出 最大 的字符,将它 接在 结果字符串的后面。
从 s 剩余字符中选出 最大 的字符,且该字符比上一个添加的字符小,将它 接在 结果字符串后面。
重复步骤 5 ,直到你没法从 s 中选择字符。
重复步骤 1 到 6 ,直到 s 中所有字符都已经被选过。
在任何一步中,如果最小或者最大字符不止一个 ,你可以选择其中任意一个,并将其添加到结果字符串。

请你返回将 s 中字符重新排序后的 结果字符串 。

 

示例 1:

输入:s = "aaaabbbbcccc"
输出:"abccbaabccba"
解释:第一轮的步骤 1,2,3 后,结果字符串为 result = "abc"
第一轮的步骤 4,5,6 后,结果字符串为 result = "abccba"
第一轮结束,现在 s = "aabbcc" ,我们再次回到步骤 1
第二轮的步骤 1,2,3 后,结果字符串为 result = "abccbaabc"
第二轮的步骤 4,5,6 后,结果字符串为 result = "abccbaabccba"
示例 2:

输入:s = "rat"
输出:"art"
解释:单词 "rat" 在上述算法重排序以后变成 "art"
示例 3:

输入:s = "leetcode"
输出:"cdelotee"
示例 4:

输入:s = "ggggggg"
输出:"ggggggg"
示例 5:

输入:s = "spo"
输出:"ops"
 

提示:

1 <= s.length <= 500
s 只包含小写英文字母。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/increasing-decreasing-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    string sortString(string s) {
        string res;
        map<char, int> store;
        for(auto cha : s)store[cha]++;
        while(res.size() != s.size()){
            char temp = 'a' - 1;
            string temp1 = s;
            sort(temp1.begin(), temp1.end());
            for(int i = 0; i < s.size(); i++){
                if(temp1[i] > temp && store[temp1[i]] !=0){
                    res.push_back(temp1[i]);
                    temp = temp1[i];
                    store[temp1[i]]--;
                }
                if(res.size() == s.size()) return res;
            }
            temp = 'z' + 1;
            sort(temp1.begin(), temp1.end(), [](char&a, char&b){return a > b;});
            for(int i = 0; i < s.size(); i++){
                if(temp1[i] < temp&&store[temp1[i]] !=0){
                    res.push_back(temp1[i]);
                    temp = temp1[i];
                    store[temp1[i]]--;
                }
                if(res.size() == s.size()) return res;
            }
        }
        return res;
    }
};

注意事项:
1.循环的中间判断。
2.map的建立防止多次访问超过某一字符串的最大个数。

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 17:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表