题目:

给定两个字符串 s 和 *t*,判断它们是否是同构的。

如果 s 中的字符可以被替换得到 *t* ,那么这两个字符串是同构的。

所有出现的字符都必须用另一个字符替换,同时保留字符的顺序。两个字符不能映射到同一个字符上,但字符可以映射自己本身。

Given two strings *s* and *t*, determine if they are isomorphic.

Two strings are isomorphic if the characters in *s* can be replaced to get *t*.

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

说明:

你可以假设 s 和 *t* 具有相同的长度。

Note:

You may assume both *s* and *t* have the same length.

解题思路:

​ 在示例 3 中输入: s = "paper", t = "title",其中字母映射结果:p <==> t , a <==>i , e <==> l , r <==>e 映射的字母可以一一替换得到对应的单词,这便是同构字符串。

非同构字符串无非两种情况(假设长度相等):

  • s = 'aa' , t = 'ab',在建立过字母映射 a <==> a 后,s第二个字母 a 其映射 value = a 不等于 t 中第二个字母 b
  • s = 'ab' , t = 'aa',在建立过字母映射 a <==> b 后,t第二个字母 a 其映射 key = a 不等于s中第二个字母 b

所以这个可以用两个哈希映射验证上述两种情况,也可以用一个映射加判断是否存在于其 values 中。

​ 既然是建立映射字符,那么最先想到的就是哈希映射(map、dict)了。

​ 该题为英文单词字符串同构检测,整个 ASCll 码长度才256,所以这道题也可以用 char[256] 以索引值对应一个字符,其存储值对应一个字符建立映射关系。

还有一个更巧妙的解法,每个字符都与该字符串中第一次出现的索引对比是否相等,判断是否同构。如:

输入:s = 'aa' , t = 'ab'
第一次遍历:
s中第一个字符 a 第一次出现的索引为0,t中第一个字符 a 第一次出现的索引为0,索引相等,继续遍历
第二次遍历:
s中第二个字符 a 第一次出现的索引为0,t中第二个字符 b 第一次出现的索引为1,索引不相等, 返回false

代码:

双哈希映射:

Java:

class Solution {
public boolean isIsomorphic(String s, String t) {
Map<Character, Character> s_map = new HashMap<>();
Map<Character, Character> t_map = new HashMap<>();
char[] s_chars = s.toCharArray(), t_chars = t.toCharArray(); // 转成 cahr 型数组
for (int i = 0; i < s_chars.length; i++) {
// 两种不成立的情况
if (s_map.containsKey(s_chars[i]) && s_map.get(s_chars[i]) != t_chars[i]) return false;
if (t_map.containsKey(t_chars[i]) && t_map.get(t_chars[i]) != s_chars[i]) return false;
s_map.put(s_chars[i], t_chars[i]);
t_map.put(t_chars[i], s_chars[i]);
}
return true;
}
}

Python:

class Solution:
def isIsomorphic(self, s: str, t: str) -> bool:
s_map, t_map = {}, {} # 双字典
for c1, c2 in zip(s, t):
# 两种不成立的情况
if c1 in s_map and s_map[c1] != c2:
return False
if c2 in t_map and t_map[c2] != c1:
return False
s_map[c1] = c2
t_map[c2] = c1
return True

单哈希映射:

Java:

class Solution {
public boolean isIsomorphic(String s, String t) {
Map<Character, Character> map = new HashMap<>();// 一个哈希映射
char[] s_chars = s.toCharArray(), t_chars = t.toCharArray();
for (int i = 0; i < s_chars.length; i++) {
if (map.containsKey(s_chars[i]) && map.get(s_chars[i]) != t_chars[i]) return false;
// 判断t中字符是否存在于映射中的 values 内
if (!map.containsKey(s_chars[i]) && map.containsValue(t_chars[i])) return false;
map.put(s_chars[i], t_chars[i]);
}
return true;
}
}

Python:

class Solution:
def isIsomorphic(self, s: str, t: str) -> bool:
hash_map = {}
for c1, c2 in zip(s, t):
if c1 in hash_map and hash_map[c1] != c2:
return False
# 判断t中字符是否存在于映射中的 values 内
if c1 not in hash_map and c2 in hash_map.values():
return False
hash_map[c1] = c2
return True

字符首次出现的索引对比法:

Java:

class Solution {
public boolean isIsomorphic(String s, String t) {
char[] s_chars = s.toCharArray();
char[] t_chars = t.toCharArray();
for (int i = 0; i < s.length(); i++) {
// 判断该字符首次出现索引值是否相等
if (s.indexOf(s_chars[i]) != t.indexOf(t_chars[i])) {
return false;
}
}
return true;
}
}

Python:

class Solution:
def isIsomorphic(self, s: str, t: str) -> bool:
for c1, c2 in zip(s, t):
# 判断该字符首次出现索引值是否相等
if s.find(c1) != t.find(c2):
return False
return True

256位字符映射

Java

class Solution {
public boolean isIsomorphic(String s, String t) {
char[] s_chars = s.toCharArray(), t_chars = t.toCharArray();
char[] s_map = new char[256], t_map = new char[256]; //索引与存储值建立映射
for (int i = 0; i < s_chars.length; i++) {
char sc = s_chars[i], tc = t_chars[i];
if (s_map[sc] == 0 && t_map[tc] == 0) {
s_map[sc] = tc;
t_map[tc] = sc;
} else if (s_map[sc] != tc || t_map[tc] != sc) {//索引与元素值的映射是否满足条件
return false;
}
}
return true;
}
}

python中没有字符这一基础数据

欢迎关注微。信。公。众。号:爱写Bug

LeetCode 205:同构字符串 Isomorphic Strings的更多相关文章

  1. LeetCode 205. 同构字符串(Isomorphic Strings)

    205. 同构字符串 205. Isomorphic Strings

  2. Java实现 LeetCode 205 同构字符串

    205. 同构字符串 给定两个字符串 s 和 t,判断它们是否是同构的. 如果 s 中的字符可以被替换得到 t ,那么这两个字符串是同构的. 所有出现的字符都必须用另一个字符替换,同时保留字符的顺序. ...

  3. [Swift]LeetCode205. 同构字符串 | Isomorphic Strings

    Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the chara ...

  4. leetcode.字符串.205同构字符串-Java

    1. 具体题目 给定两个字符串 s 和 t,判断它们是否是同构的.如果 s 中的字符可以被替换得到 t ,那么这两个字符串是同构的.所有出现的字符都必须用另一个字符替换,同时保留字符的顺序.两个字符不 ...

  5. LeetCode 859. 亲密字符串(Buddy Strings) 23

    859. 亲密字符串 859. Buddy Strings 题目描述 给定两个由小写字母构成的字符串 A 和 B,只要我们可以通过交换 A 中的两个字母得到与 B 相等的结果,就返回 true:否则返 ...

  6. [leetcode]205. Isomorphic Strings 同构字符串

    Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the chara ...

  7. [LeetCode] Isomorphic Strings 同构字符串

    Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the chara ...

  8. 205. Isomorphic Strings - LeetCode

    Question 205. Isomorphic Strings Solution 题目大意:判断两个字符串是否具有相同的结构 思路:构造一个map,存储每个字符的差,遍历字符串,判断两个两个字符串中 ...

  9. 【刷题-LeetCode】205. Isomorphic Strings

    Isomorphic Strings Given two strings *s* and *t*, determine if they are isomorphic. Two strings are ...

随机推荐

  1. python检查字典元素是否存在类似php中isset()方法

    PHP中isset()方法来检查数组元素是否存在,在Python中无对应函数,在Python中一般可以通过异常来处理数组元素不存在的情况,而无须事先检查 Python的编程理念是“包容错误”而不是“严 ...

  2. 基于django中间件的编程思想

    目录 前言 前期准备 importlib模块介绍 基于django中间件的编程思想 django中settings源码 配置文件的插拔式设计 基于django中间件的思想,实现功能配置 前言 在学习d ...

  3. 如何解决Sublime text3文件名称中文乱码问题

    在sublime text 3中,Preference, Settings-User,最后加上一行 "dpi_scale": 1.0 { "auto_complete_t ...

  4. cf 模拟

    https://codeforces.com/contest/1236/problem/D 题意:一个n*m格子矩阵,放一个人偶在左上角向右走,只能在每个格子最多右转一次,有k个障碍物.求是否能够一次 ...

  5. 【CentOS 7】CentOS 7各个版本镜像下载地址(转)

    参考链接:https://www.centos.org/download/mirrors/ https://www.cnblogs.com/defineconst/p/11176593.html

  6. 洛谷P3128 [USACO15DEC]最大流Max Flow (树上差分)

    ###题目链接### 题目大意: 给你一棵树,k 次操作,每次操作中有 a  b 两点,这两点路上的所有点都被标记一次.问你 k 次操作之后,整棵树上的点中被标记的最大次数是多少. 分析: 1.由于数 ...

  7. php中对于file的相关语句

    // 打开文件 fopen(); // 打开文件的方式 r 只读,r+ 读写方式打开 w 以写入的方式打开 w+ 以读写方式打开(以覆盖的形式写入) // a以写入的方式打开,文件不存在则创建 x创建 ...

  8. css实现左右两个div等高

    提出问题: 现在有两个div,但是两个div里面内容多少不确定,可能左边多,可能右边多,css要如何设置可以保证左右两边的div等高呢? 解决方案: 每个div使用display:table-cell ...

  9. 如何关闭jdk自动更新提示

    缘由 国庆将电脑重装了一下,jdk自然也就重装了,一开机总是提示我更新,索性就将他关掉. 解决办法 右键这个图标,点击属性. 将自动更新取消勾选.

  10. c#中的Nullable(可空类型)

    在C#中使用Nullable类型(给整型赋null值的方法) 在C#1.x的版本中,一个值类型变量是不可以被赋予null值的,否则会产生异常.在C#2.0中,微软提供了Nullable类型,允许用它定 ...