Leetcode1160. 拼写单词(C语言)

Leetcode1160. 拼写单词(C语言)

题目:
给你一份『词汇表』(字符串数组) words 和一张『字母表』(字符串) chars。
假如可用 chars 中的字符拼写出 words 中的某个字符串,每个字符只能用一次,就为掌握了这个单词。返回词汇表 words 中你掌握的所有单词的 长度之和。例 :
输入:words = [“cat”,“bt”,“hat”,“tree”], chars = “atach”
输出:6

解释:
可以形成字符串 “cat” 和 “hat”,所以答案是 3 + 3 = 6。

思路:
将chars,words[i] 的字符和个数均存储在哈希表中,进行比较。

代码:

int countCharacters(char ** words, int wordsSize, char * chars){
    int len=strlen(chars);
    if(wordsSize==0 || len==0)  return 0;

    int hash[26];					//构造chars的哈希表
    memset(hash,0,sizeof(hash));	//字符&数量 哈希类型
    for(int i=0;i<len;i++){
        hash[chars[i]-'a']++;
    }

    int cnt[26];
    int j;
    int max=0;
    for(int i=0;i<wordsSize;i++){
        int wlen=strlen(words[i]);
        if(wlen>len)    continue;	//chars长度比words[i]长度小则pass
        
        memset(cnt,0,sizeof(cnt));
        for(j=0;j<wlen;j++){
            if(hash[words[i][j]-'a'] <= cnt[words[i][j]-'a'])  //"="hash值为0(j=0时)
            	break;				// "<"重复字母不足
            cnt[words[i][j]-'a']++; //字母重复一次
        }
        if(j==wlen) max+=wlen;
    }
    return max;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值