《leetCode》:Remove Duplicate Letters

题目

Given a string which contains only lowercase letters, remove duplicate 
letters so that every letter appear once and only once. 
You must make sure your result is the smallest in lexicographical order among all possible results.

Example:
Given "bcabc"
Return "abc"

Given "cbacdcbc"
Return "acdb"

思路

利用贪婪的思想,尽可能的将小的放在前面。

实现代码如下:

char* removeDuplicateLetters(char* s) {
    if(s==NULL){
        return NULL;
    }
    int spaceLen=26;
    int *count=(int *)malloc(spaceLen*sizeof(int));//用来统计字符串s中每个字符出现的次数 
    if(count==NULL){
        exit(EXIT_FAILURE);
    }
    memset(count,0,spaceLen*sizeof(int));//初始化为零
    int len=strlen(s);
    for(int i=0;i<len;i++){
        count[s[i]-'a']++;
    }
    //将flag中为true的字符组合起来返回即可
    //开辟一段空间来保存结果
    char *res=(char *)malloc(spaceLen*sizeof(char));
    if(res==NULL){
        exit(EXIT_FAILURE);
    }
    bool *isExistInRes=(bool *)malloc(spaceLen*sizeof(bool));//用来标识结果是否已经存在了该字符 
    if(isExistInRes==NULL){
        exit(EXIT_FAILURE);
    } 
    memset(isExistInRes,false,spaceLen*sizeof(bool));//注意:一定要初始化为false

    char ch;
    char sc;
    int end=-1;
    for(int i=0;i<len;i++){
        ch=s[i];
        if(isExistInRes[ch-'a']){
            count[ch-'a']--;
            continue;
        }
        //通过判断刚加入的这个元素是否应该加入,如果后面的元素小于刚刚加入的元素并且这个元素不是最后一次出现,则应该不加入 
        while(end>=0&&((sc=res[end])>=ch)&&count[sc-'a']>0){
            end--;
            isExistInRes[sc-'a']=false;
        }
        res[++end]=ch;
        count[ch-'a']--;
        isExistInRes[ch-'a']=true; 

    }
    res[++end]='\0';
    return res;    
}

你可能感兴趣的:(LeetCode,String,remove,DUPLICATE)