LeetCode—— 748 最短完整词

问题描述

如果单词列表(words)中的一个单词包含牌照(licensePlate)中所有的字母,那么我们称之为完整词。在所有完整词中,最短的单词我们称之为最短完整词。

单词在匹配牌照中的字母时不区分大小写,比如牌照中的 "P" 依然可以匹配单词中的 "p" 字母。

我们保证一定存在一个最短完整词。当有多个单词都符合最短完整词的匹配条件时取单词列表中最靠前的一个。

牌照中可能包含多个相同的字符,比如说:对于牌照 "PP",单词 "pair" 无法匹配,但是 "supper" 可以匹配。

示例 1:

输入:licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"]
输出:"steps"
说明:最短完整词应该包括 "s"、"p"、"s" 以及 "t"。对于 "step" 它只包含一个 "s" 
所以它不符合条件。同时在匹配过程中我们忽略牌照中的大小写。
 

示例 2:

输入:licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"]
输出:"pest"
说明:存在 3 个包含字母 "s" 且有着最短长度的完整词,但我们返回最先出现的完整词。

注意:

  • 牌照(licensePlate)的长度在区域[1, 7]中。
  • 牌照(licensePlate)将会包含数字、空格、或者字母(大写和小写)。
  • 单词列表(words)长度在区间 [10, 1000] 中。
  • 每一个单词 words[i] 都是小写,并且长度在区间 [1, 15] 中。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shortest-completing-word
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

执行结果

代码描述

思路:把目标字符串存入map,将vector中的字符串,每一个进行map,并判断目标map 是否在此单词的map中。如果存在,则记录,并最终保留最小值。

class Solution {
public:
    string shortestCompletingWord(string licensePlate, vector<string>& words) {
        map<char, int> lic;
        lic = deal(licensePlate);
        map<char, int> temp_map;
        int res = 16;
        string s;
        for(int i = 0; i < words.size(); ++i)
        {
            temp_map.clear(); // 每次记得清空
            temp_map = deal(words[i]);
            if(contain(lic, temp_map) && res > words[i].size())
            {
                res = words[i].size();
                s = words[i];
            }
        }
        return s;
    }
    
    // 处理string为map
    map<char, int> deal(string s)
    {
        map<char, int> m;
        for(int i = 0; i < s.size(); ++i)
        {
            if(isalpha(s[i]))
            {
                char temp = tolower(s[i]);
                m[temp]++;
            }
        }
        return m;
    }
    
    // 判断a是否包含在b中
    bool contain(map<char, int> a, map<char, int> b)
    {
        map<char, int>::iterator ita = a.begin();
        for(; ita != a.end(); ++ita)
        {
            if(b.count(ita->first) == 0)
                return false;
            if(b[ita->first] < ita->second)  # 注意此处,是小于
                return false;
        }
        return true;
    }
   
};
发布了367 篇原创文章 · 获赞 100 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_34732729/article/details/103880897
今日推荐