leetcode 1002. 查找常用字符(Find Common Characters)
Posted zhanzq1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 1002. 查找常用字符(Find Common Characters)相关的知识,希望对你有一定的参考价值。
题目描述:
给定仅有小写字母组成的字符串数组 A
,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表。例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 3 次。
你可以按任意顺序返回答案。
示例 1:
输入:["bella","label","roller"]
输出:["e","l","l"]
示例 2:
输入:["cool","lock","cook"]
输出:["c","o"]
提示:
1 <= A.length <= 100
1 <= A[i].length <= 100
A[i][j]
是小写字母
解法:
class Solution {
public:
vector<int> parse(string s){
vector<int> count(128, 0);
for(char ch : s){
count[ch]++;
}
return count;
}
void merge(vector<int> & lst1, vector<int>& lst2){
for(char ch = 'a'; ch <= 'z'; ch++){
lst1[ch] = min(lst1[ch], lst2[ch]);
}
}
vector<string> commonChars(vector<string>& A) {
int sz = A.size();
vector<string> res;
if(sz == 1){
for(char ch : A[0]){
res.push_back(string(1, ch));
}
return res;
}
vector<int> lst1 = parse(A[0]);
vector<int> lst2;
for(int i = 1; i < sz; i++){
lst2 = parse(A[i]);
merge(lst1, lst2);
}
for(int ch = 'a'; ch <= 'z'; ch++){
// cout<<char(ch)<<": "<<lst1[ch]<<endl;
for(int i = 0; i < lst1[ch]; i++){
res.push_back(string(1, ch));
}
}
return res;
}
};
以上是关于leetcode 1002. 查找常用字符(Find Common Characters)的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode-1002 Find Common Characters(查找常用字符)