当前位置: 代码迷 >> 综合 >> 【leetcode】771. 宝石与石头(jewels-and-stones)(模拟)[简单]
  详细解决方案

【leetcode】771. 宝石与石头(jewels-and-stones)(模拟)[简单]

热度:17   发布时间:2024-02-24 17:52:35.0

链接

https://leetcode-cn.com/problems/jewels-and-stones/

耗时

解题:13 min
题解:4 min

题意

给定字符串J 代表石头中宝石的类型,和字符串 S代表你拥有的石头。 S 中每个字符代表了一种你拥有的石头的类型,你想知道你拥有的石头中有多少是宝石。

J 中的字母不重复,J 和 S中的所有字符都是字母。字母区分大小写,因此"a"和"A"是不同类型的石头。

思路

用 hash 表存一下 J 中存在的字符,最后遍历 S 字符串,计数 S 中存在的 J 中字符的数量。

时间复杂度:O(max(m,n))O(max(m, n))O(max(m,n))

AC代码

class Solution {
    
public:int numJewelsInStones(string J, string S) {
    unordered_map<char, bool> unmp;for(auto j : J) {
    unmp[j] = true;}int res = 0;for(auto s : S) {
    if(unmp[s]) res++;}return res;}
};