# 「力扣」第 205 题:同构字符串(简单)
# 题目描述
给定两个字符串 s
和 t
,判断它们是否是同构的。
如果 s
中的字符可以按某种映射关系替换得到 t
,那么这两个字符串是同构的。
Two strings
s
andt
are isomorphic if the characters ins
can be replaced to gett
.
每个出现的字符都应当映射到另一个字符,同时不改变字符的顺序。不同字符不能映射到同一个字符上,相同字符只能映射到同一个字符上,字符可以映射到自己本身。
All occurrences of a character must be replaced with another character while preserving the order of characters. No two characters may map to the same character, but a character may map to itself.
示例 1:
输入:s = "egg", t = "add"
输出:true
示例 2:
输入:s = "foo", t = "bar"
输出:false
示例 3:
输入:s = "paper", t = "title"
输出:true
提示:
1 <= s.length <= 5 * 10^4
;
- 可以假设
s
和t
长度相同(t.length == s.length
); s
andt
consist of any valid ascii character.
# 思路分析
- 重点:建立映射关系的时候,要检查两个
key
是否对应到同一个value
上了; - 越是简单的问题,越有小陷阱;
- 测试用例:输入:"ab"、"aa",输出:
false
。
参考代码:
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
public class Solution {
public boolean isIsomorphic(String s, String t) {
int n = s.length();
if (n != t.length()) {
return false;
}
Set<Character> set = new HashSet<>();
Map<Character, Character> map = new HashMap<>();
Character curS;
Character curT;
for (int i = 0; i < n; i++) {
curS = s.charAt(i);
curT = t.charAt(i);
if (map.containsKey(curS)) {
if (!curT.equals(map.get(curS))) {
return false;
}
} else {
if (set.contains(curT)) {
return false;
} else {
set.add(curT);
map.put(curS, curT);
}
}
}
return true;
}
}
作者:liweiwei1419 链接:https://suanfa8.com/hash-table/solutions/0205-isomorphic-strings 来源:算法吧 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。