码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode] remove duplicate letters

时间:2019-02-04 23:16:36      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:dup   solution   etc   col   sub   count   break   rem   index   

好懒again,草稿

用时4ms,内存1M (好高啊魂淡

class Solution {
public:
    string removeDuplicateLetters(string s) {
        auto length=s.size();
        if (length<=1)
            return s;
        int counts[26]={0};
        for (int i=0;i<length;i++)
            ++counts[s[i]-a];
        int smallest_ch_index=0;
        char smallest_ch=s[0];
        for (int i=0;i<length;i++) {
            if (s[i]<smallest_ch) {
                smallest_ch_index=i;
                smallest_ch=s[i];
            }
            if(--counts[s[i]-a]==0)
                break;
        }
        string remained=s.substr(smallest_ch_index+1);
        while (remained.find(smallest_ch)!=string::npos)
            remained=remained.erase(remained.find(smallest_ch),1);
        return smallest_ch+removeDuplicateLetters(remained);
    }
};

 

[leetcode] remove duplicate letters

标签:dup   solution   etc   col   sub   count   break   rem   index   

原文地址:https://www.cnblogs.com/RDaneelOlivaw/p/10352326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!