给定一种规律 pattern 和一个字符串 str ,判断 str 是否遵循相同的规律。
这里的 遵循 指完全匹配,例如, pattern 里的每个字母和字符串 str 中的每个非空单词之间存在着双向连接的对应规律。
示例1:
输入: pattern = "abba", str = "dog cat cat dog"
输出: true
示例2:
输入:pattern = "abba", str = "dog cat cat fish"
输出: false
示例3:
输入: pattern = "aaaa", str = "dog cat cat dog"
输出: false
示例4:
输入: pattern = "abba", str = "dog dog dog dog"
输出: false
整体思路:
双向映射。循环把s中的单词提取出来,一个一个的与pattern中的单词进行映射,判断。
解题代码:
class Solution {
public:
bool wordPattern(string pattern, string s) {
int m=s.size();
int i=0;
unordered_map<string,char>map1;
unordered_map<char,string>map2;
for(auto ch:pattern)//对pattern单词进行循环
{
if(i>=m)
return false;
int j=i;
while(j<m&&s[j]!=' ') j++;//遇空格提取s中的单词
string temp=s.substr(i,j-i);//截取单词
if(map1.count(temp)&&map1[temp]!=ch)//映射判断
return false;
if(map2.count(ch)&&map2[ch]!=temp)
return false;
map1[temp]=ch;//此处映射
map2[ch]=temp;//此处映射
i=j+1;
}
return i>=m;
}
};
代码未经优化,仅供参考。