鱼C论坛

 找回密码
 立即注册
查看: 1322|回复: 0

[技术交流] C++刷LeetCode(890. 查找和替换模式)【数据结构】

[复制链接]
发表于 2020-6-29 11:15:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目描述:
你有一个单词列表 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 <= words.length <= 50
1 <= pattern.length = words[i].length <= 20

class Solution {
public:
    string change(string & word){
        map<int, int> store;
        string res;
        for(int i = 0; i < word.size(); i++){
            if(store.find(word[i]) == store.end()){
                store[word[i]] = i + 1;
            }
            res += to_string(store[word[i]]); 
        }
        return res;
    }
    vector<string> findAndReplacePattern(vector<string>& words, string pattern) {
        string pattern_ = change(pattern);
        vector<string> res;
        for(int i = 0; i < words.size(); i++){
            string temp = change(words[i]);
            if(temp == pattern_)res.push_back(words[i]);
        }
        return res;
    }
};

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 13:20

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表