LeetCode刷题(106)~查找和替换模式【映射】
【摘要】 题目描述
你有一个单词列表 words 和一个模式 pattern,你想知道 words 中的哪些单词与模式匹配。
如果存在字母的排列 p ,使得将模式中的每个字母 x 替换为 p(x) 之后,我们就得到了所需的单词,那么单词与模式是匹配的。
(回想一下,字母的排列是从字母到字母的双射:每个字母映射到另一个字母,没有两个字母映射到同一个字母。)
返回 words...
题目描述
你有一个单词列表 words 和一个模式 pattern,你想知道 words 中的哪些单词与模式匹配。
如果存在字母的排列 p ,使得将模式中的每个字母 x 替换为 p(x) 之后,我们就得到了所需的单词,那么单词与模式是匹配的。
(回想一下,字母的排列是从字母到字母的双射:每个字母映射到另一个字母,没有两个字母映射到同一个字母。)
返回 words 中与给定模式匹配的单词列表。
你可以按任何顺序返回答案。
示例:
输入:words = ["abc","deq","mee","aqq","dkd","ccc"], pattern = "abb"
输出:["mee","aqq"]
解释:
"mee" 与模式匹配,因为存在排列 {a -> m, b -> e, ...}。
"ccc" 与模式不匹配,因为 {a -> c, b -> c, ...} 不是排列。
因为 a 和 b 映射到同一个字母。
- 1
- 2
- 3
- 4
- 5
- 6
提示:
- 1 <= words.length <= 50
- 1 <= pattern.length = words[i].length <= 20
解答 By 海轰
提交代码
bool is(string s1,string s2) { unordered_map<char,char> m1; m1[s1[0]]=s2[0]; for(int i=1;i<s1.length();++i) { if(m1.find(s1[i])==m1.end()) m1[s1[i]]=s2[i]; else if(m1[s1[i]]!=s2[i]) return false; } return true; } vector<string> findAndReplacePattern(vector<string>& words, string pattern) { vector<string> res; for(int i=0;i<words.size();++i) { if(is(words[i],pattern)==true&&is(pattern,words[i])==true) res.push_back(words[i]); } return res; }
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
运行结果
提交代码
bool is(string s1,string s2) { for(int i=0;i<s1.length();++i) { if(s1.find(s1[i])!=s2.find(s2[i])) return false; } return true; } vector<string> findAndReplacePattern(vector<string>& words, string pattern) { vector<string> res; for(int i=0;i<words.size();++i) { if(is(words[i],pattern)==true) res.push_back(words[i]); } return res; }
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
运行结果
题目来源
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-and-replace-pattern
文章来源: haihong.blog.csdn.net,作者:海轰Pro,版权归原作者所有,如需转载,请联系作者。
原文链接:haihong.blog.csdn.net/article/details/108293426
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)