LeetCode 205. Isomorphic Strings
Posted Shendu.cc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 205. Isomorphic Strings相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int m[300];
int m2[300];
bool isIsomorphic(string s, string t) {
if(s=="")
return true;
memset(m,-1,sizeof(m));
for(int i=0;i<s.length();i++)
{
if(m[s[i]]==-1)
{
if(m2[t[i]]==-1)
return false;
m[s[i]] = t[i];
m2[t[i]]=-1;
}
else
{
if(m[s[i]]!=t[i])
return false;
}
}
return true;
}
};
以上是关于LeetCode 205. Isomorphic Strings的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] 205 Isomorphic Strings
205. Isomorphic Strings(LeetCode)
LeetCode 205. Isomorphic Strings
LeetCode 205 Isomorphic Strings