Keshawn_lu's Blog

Leetcode 1684. 统计一致字符串的数目

字数统计: 273阅读时长: 1 min
2022/11/08 Share

题目简介:

给你一个由不同字符组成的字符串 allowed 和一个字符串数组 words 。如果一个字符串的每一个字符都在 allowed 中,就称这个字符串是 一致字符串

请你返回 words 数组中 一致字符串 的数目。

示例 1:

1
2
3
输入:allowed = "ab", words = ["ad","bd","aaab","baa","badab"]
输出:2
解释:字符串 "aaab" 和 "baa" 都是一致字符串,因为它们只包含字符 'a' 和 'b' 。

提示:

  • 1 <= words.length <= 10^4
  • 1 <= allowed.length <= 26
  • 1 <= words[i].length <= 10
  • allowed 中的字符 互不相同
  • words[i]allowed 只包含小写英文字母。

思路:

利用哈希表存储allowed,再依次遍历字符串即可

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class Solution {
public:
int countConsistentStrings(string allowed, vector<string>& words) {

int res = 0;
unordered_map<char, int> map;

for(auto& c : allowed)
map[c] = 1;

for(auto& word : words){

int flag = 0;
for(auto& c : word){

if(map[c] != 1){

flag = 1;
break;
}
}

if(flag == 0)
res++;
}

return res;
}
};
CATALOG
  1. 1. 题目简介:
  2. 2. 思路:
  3. 3. 代码如下: