码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 1002. 查找常用字符(Find Common Characters)

时间:2019-04-09 00:33:53      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:oid   包括   rac   一个   需要   int   lock   常用   toc   

题目描述:

给定仅有小写字母组成的字符串数组 A,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表。例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 3 次。

你可以按任意顺序返回答案。

示例 1:

输入:["bella","label","roller"]
输出:["e","l","l"]

示例 2:

输入:["cool","lock","cook"]
输出:["c","o"]

提示:

  1. 1 <= A.length <= 100
  2. 1 <= A[i].length <= 100
  3. 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)

标签:oid   包括   rac   一个   需要   int   lock   常用   toc   

原文地址:https://www.cnblogs.com/zhanzq/p/10674442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!