题目描述
给定两个字符串 s 和 t,判断它们是否是同构的。
如果 s 中的字符可以被替换得到 t ,那么这两个字符串是同构的。
所有出现的字符都必须用另一个字符替换,同时保留字符的顺序。两个字符不能映射到同一个字符上,但字符可以映射自己本身。
示例 1:
输入: s = "egg", t = "add"
输出: true
示例 2:
输入: s = "foo", t = "bar"
输出: false
示例 3:
输入: s = "paper", t = "title"
输出: true
说明:
你可以假设 s 和 t 具有相同的长度。
解题思路
- 哈希表
用两个哈希表将字符串s和字符串t中对应位置的字符做一一映射,如果某个位置存在非一一映射,那么返回false。遍历结束返回true。
源码
class Solution {
public:
bool isIsomorphic(string s, string t) {
// 哈希表
unordered_map<char,char> cnt;
unordered_map<char,char> cnt2;
int n=s.length();
for(int i=0;i<n;i++)
{
if(cnt.count(s[i])>0||cnt2.count(t[i])>0)
{
if(cnt[s[i]]!=t[i]||cnt2[t[i]]!=s[i])
{
return false;
}
}
else
{
cnt[s[i]]=t[i];
cnt2[t[i]]=s[i];
}
/*
char x=s[i],y=t[i];
if((cnt.count(x)&&cnt[x]!=y)||(cnt2.count(y)&&cnt2[y]!=x))
{
return false;
}
cnt[x]=y;
cnt2[y]=x;
*/
}
return true;
/*
// 数组
vector<int> s2t(256,0),t2s(256,0);
int n=s.length();
for(int i=0;i<n;i++)
{
if(s2t[s[i]]!=t2s[t[i]])
{
return false;
}
s2t[s[i]]=i+1;
t2s[t[i]]=i+1;
}
return true;
*/
}
};
题目来源
来源:力扣(LeetCode)