c_cpp 771.珠宝和石头

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 771.珠宝和石头相关的知识,希望对你有一定的参考价值。

//使用哈希法,用数组提前记录所有值,然后再进行遍历
class Solution {
public:
    int numJewelsInStones(string J, string S) {
        int array[100] = {0};
        int temp = 0;
        for(int i = 0;i < S.length();i++){
            array[S[i] - 65]++;
        }
        for(int i = 0;i < J.length();i++){
            temp += array[J[i] - 65];
        }
        
        return temp;
    }
};

以上是关于c_cpp 771.珠宝和石头的主要内容,如果未能解决你的问题,请参考以下文章

771. Jewels and Stones 珠宝和石头

[LeetCode] 771. Jewels and Stones 珠宝和石头

771. 宝石与石头

771. 宝石与石头

771.宝石与石头

LeetCode771. 宝石与石头(C++)