【LeetCode】C++ :简单题 - 哈希表 748. 最短补全词
作者:互联网
难度简单36
给定一个字符串牌照
licensePlate
和一个字符串数组words
,请你找出并返回words
中的 最短补全词 。如果单词列表(
words
)中的一个单词包含牌照(licensePlate
)中所有的字母,那么我们称之为 补全词 。在所有完整词中,最短的单词我们称之为 最短补全词 。单词在匹配牌照中的字母时要:
- 忽略牌照中的数字和空格。
- 不区分大小写,比如牌照中的
"P"
依然可以匹配单词中的"p"
字母。- 如果某个字母在牌照中出现不止一次,那么该字母在补全词中的出现次数应当一致或者更多。
例如:
licensePlate
= "aBc 12c"
,那么它由字母'a'
、'b'
(忽略大写)和两个'c'
。可能的 补全词 是"abccdef"
、"caaacab"
以及"cbca"
。题目数据保证一定存在一个最短补全词。当有多个单词都符合最短补全词的匹配条件时取单词列表中最靠前的一个。
示例 1:
输入:licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"] 输出:"steps" 说明:最短补全词应该包括 "s"、"p"、"s" 以及 "t"。在匹配过程中我们忽略牌照中的大小写。 "step" 包含 "t"、"p",但只包含一个 "s",所以它不符合条件。 "steps" 包含 "t"、"p" 和两个 "s"。 "stripe" 缺一个 "s"。 "stepple" 缺一个 "s"。 因此,"steps" 是唯一一个包含所有字母的单词,也是本样例的答案。示例 2:
输入:licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"] 输出:"pest" 说明:存在 3 个包含字母 "s" 且有着最短长度的补全词,"pest"、"stew"、和 "show" 三者长度相同,但我们返回最先出现的补全词 "pest" 。示例 3:
输入:licensePlate = "Ah71752", words = ["suggest","letter","of","husband","easy","education","drug","prevent","writer","old"] 输出:"husband"示例 4:
输入:licensePlate = "OgEu755", words = ["enough","these","play","wide","wonder","box","arrive","money","tax","thus"] 输出:"enough"示例 5:
输入:licensePlate = "iMSlpe4", words = ["claim","consumer","student","camera","public","never","wonder","simple","thought","use"] 输出:"simple"
提示:
1 <= licensePlate.length <= 7
licensePlate
由数字、大小写字母或空格' '
组成1 <= words.length <= 1000
1 <= words[i].length <= 15
words[i]
由小写英文字母组成
思路就是:
先对牌照里的英文字符存储起来,并相应存储其出现次数;然后对words数组进行遍历,对每个单词分别用牌照里的英文字母进行比较,出现相同字母及次数相应相等时,且当前单词长度小于最小长度时,更新答案即可。
需要注意的点:
1. 判断牌照里的字符是英文字母;
2. 英文字母转换成小写;
3. it = mp.begin(); 后循环直接开始,不需要it ++。
class Solution {
public:
string shortestCompletingWord(string licensePlate, vector<string>& words) {
map<char, int> mp;
for(auto &ch: licensePlate){
if(isalpha(ch)){
mp[tolower(ch)]++;
}
}
string res = "";
int minLen = INT_MAX;
for(string word: words){
map<char, int> tmp = mp;
for(auto str: word){
tmp[str]--;
}
auto it = tmp.begin();
for(it; it != tmp.end(); it++){
if(it->second > 0){
break;
}
}
if(it == tmp.end() && word.length() < minLen){
res = word;
minLen = word.length();
}
}
return res;
}
};
人家用数组写的,比我这个快很多,向大佬学习!
class Solution {
public:
string shortestCompletingWord(string licensePlate, vector<string>& words) {
vector<int> letters(26, 0);
for(char ch: licensePlate){
if(isalpha(ch)){
letters[tolower(ch) - 'a']++;
}
}
string res = "";
int minLen = INT_MAX;
for(string word: words){
vector<int> temp = letters;
for(char ch: word){
temp[ch - 'a'] --;
}
int i = 0;
for(i; i < 26; i++){
if(temp[i] > 0){
break;
}
}
if(i == 26 && word.size() < minLen){
res = word;
minLen = word.size();
}
}
return res;
}
};
有一点需要提醒一下自己,随着算法练习的不断深入,算法题的代码量也在随之不断增加,做好心理准备,不能每次看到题目想到思路就觉着代码很多肯定不对,这种心理暗示是不好的是错误的,应当树立正确的心理态度。当对一个题目有想法时,应该尽自己所能去实现想法,然后再学习大佬们的高级解法来反思自己,学习反思和总结才能有所提升,不能看到题目难代码长就被它吓跑了,那样就是个懦夫是个弱者。要相信自己一定可以实现目标的,加油!不管有多难也要坚持,坚持下去!加油!!!
标签:licensePlate,word,补全,748,C++,ch,words,string 来源: https://blog.csdn.net/weixin_44566432/article/details/113047205