leet-code/src/main/java/leetcode/editor/cn/IsomorphicStrings.java
2021-07-09 16:19:40 +08:00

71 lines
1.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//给定两个字符串 s 和 t判断它们是否是同构的。
//
// 如果 s 中的字符可以按某种映射关系替换得到 t ,那么这两个字符串是同构的。
//
// 每个出现的字符都应当映射到另一个字符,同时不改变字符的顺序。不同字符不能映射到同一个字符上,相同字符只能映射到同一个字符上,字符可以映射到自己本身。
//
//
//
// 示例 1:
//
//
//输入s = "egg", t = "add"
//输出true
//
//
// 示例 2
//
//
//输入s = "foo", t = "bar"
//输出false
//
// 示例 3
//
//
//输入s = "paper", t = "title"
//输出true
//
//
//
// 提示:
//
//
// 可以假设 s 和 t 长度相同。
//
// Related Topics 哈希表 字符串
// 👍 366 👎 0
package leetcode.editor.cn;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
//205:同构字符串
public class IsomorphicStrings{
public static void main(String[] args) {
//测试代码
Solution solution = new IsomorphicStrings().new Solution();
solution.isIsomorphic("badc","baba");
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isIsomorphic(String s, String t) {
Map<Character,Character> sMap = new HashMap<>();
Map<Character,Character> tMap = new HashMap<>();
for (int i = 0; i < s.length(); i++) {
char sch = s.charAt(i);
char tch = t.charAt(i);
if((sMap.containsKey(sch)&&sMap.get(sch)!=tch)||(tMap.containsKey(tch)&&tMap.get(tch)!=sch)){
return false;
}
sMap.put(sch,tch);
tMap.put(tch,sch);
}
return true;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}