其他分享
首页 > 其他分享> > 【leetcode】面试题 01.02. 判定是否互为字符重排

【leetcode】面试题 01.02. 判定是否互为字符重排

作者:互联网

 

bool CheckPermutation(char* s1, char* s2){
    int len1=strlen(s1), len2=strlen(s2);
    if(len1 != len2) return false;
    int i, hash[26]={0};
    for(i=0; i<len1; i++){
        hash[s1[i]-'a']++;
    for(i=0; i<len1; i++){
        if(hash[s2[i]-'a']-- <=0)
            return false;
    return true;
}

 

标签:面试题,int,s2,s1,len1,char,len2,01.02,leetcode
来源: https://www.cnblogs.com/ganxiang/p/14050427.html