205. 同构字符串-LeetCode(C++)
205. 同构字符串
9.13
题目
给定两个字符串 s
和 t
,判断它们是否是同构的。
如果 s
中的字符可以按某种映射关系替换得到 t
,那么这两个字符串是同构的。
每个出现的字符都应当映射到另一个字符,同时不改变字符的顺序。不同字符不能映射到同一个字符上,相同字符只能映射到同一个字符上,字符可以映射到自己本身。
提示:
1 <= s.length <= 5 * 104
t.length == s.length
s
和t
由任意有效的 ASCII 字符组成
示例
示例 1:
输入:s = "egg", t = "add"
输出:true
示例 2:
输入:s = "foo", t = "bar"
输出:false
示例 3:
输入:s = "paper", t = "title"
输出:true
题解
此题是「290. 单词规律」的简化版,双射->双哈希表,秒了
class Solution {
public:
bool isIsomorphic(string s, string t) {
if(s.length() != t.length()){
return false;
}
unordered_map<char,char> first2second;
unordered_map<char,char> second2first;
for(int i = 0;i<s.length();i++){
char c1 = s[i];
char c2 = t[i];
if(first2second.find(c1) != first2second.end()){
//已经在map中找到了c1与其对应的
if(first2second[c1] != c2){
return false;
}
}else{
first2second[c1] = c2;
}
}
for(int i = 0;i<s.length();i++){
char c1 = s[i];
char c2 = t[i];
if(second2first.find(c2) != second2first.end()){
//已经在map中找到了c2与其对应的
if(second2first[c2] !=c1){
return false;
}
}else{
second2first[c2] = c1;
}
}
return true;
}
};