LeetCode 205. Isomorphic Strings

简介: 给定两个字符串 s 和 t,判断它们是否是同构的。如果 s 中的字符可以被替换得到 t ,那么这两个字符串是同构的。所有出现的字符都必须用另一个字符替换,同时保留字符的顺序。两个字符不能映射到同一个字符上,但字符可以映射自己本身。

v2-663ca709e0d52b034ce981c198f45f51_1440w.jpg

Description



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.


Example 1:

Input: s = "egg", t = "add"

Output: true


Example 2:

Input: s = "foo", t = "bar"

Output: false


Example 3:

Input: s = "paper", t = "title"

Output: true


描述



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

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


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


示例 1:

输入: s = "egg", t = "add"

输出: true


示例 2:

输入: s = "foo", t = "bar"

输出: false


示例 3:

输入: s = "paper", t = "title"

输出: true


思路



  • 这道题我们使用一个字典,键为s中的字符,值为t中的字符,我们要求键和值要一一对应.


# -*- coding: utf-8 -*-
# @Author:             何睿
# @Create Date:        2019-01-21 11:56:34
# @Last Modified by:   何睿
# @Last Modified time: 2019-01-21 19:36:15
class Solution:
    def isIsomorphic(self, s, t):
        """
        :type s: str
        :type t: str
        :rtype: bool
        """
        # 字典,键为s中的字符,值为t中的字符
        # 键和值必须一一对应
        res = {}
        for x, y in zip(s, t):
            # 若键存在,则其值一定要和y相等
            if x in res:
                if not res.get(x) == y: return False
            else:
                # 若y已经作为其他键的值,直接返回False,因为这里要求键值一一对应
                if y in res.values(): return False
                else: res[x] = y
        # 上面的条件都满足,返回True
        return True


源代码文件在这里.


目录
相关文章
LeetCode 415. Add Strings
给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。
95 0
LeetCode 415. Add Strings
LeetCode 43. Multiply Strings
给定两个表示为字符串形式的非负整数num1和num2,返回num1和num2的乘积,也表示为字符串形式。
74 0
LeetCode 43. Multiply Strings
|
人工智能 算法
LeetCode 1347. 制造字母异位词的最小步骤数 Minimum Number of Steps to Make Two Strings Anagram
LeetCode 1347. 制造字母异位词的最小步骤数 Minimum Number of Steps to Make Two Strings Anagram
|
Java 索引 Python
LeetCode 205:同构字符串 Isomorphic Strings
题目: 给定两个字符串 s 和 *t*,判断它们是否是同构的。 如果 s 中的字符可以被替换得到 *t* ,那么这两个字符串是同构的。 所有出现的字符都必须用另一个字符替换,同时保留字符的顺序。两个字符不能映射到同一个字符上,但字符可以映射自己本身。
891 0
leetcode 205. Isomorphic Strings
题目 Given two strings s and t, determine if they are isomorphic.
698 0
LeetCode - 43. Multiply Strings
43. Multiply Strings  Problem's Link  ---------------------------------------------------------------------------- Mean:  给定两个字符串,计算这两个字符串相乘的结果.
925 0
|
索引 Java
LeetCode 205 Isomorphic Strings(同构的字符串)(string、vector、map)(*)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50611168 翻译 给定两个字符串s和t,决定它们是否是同构的。
846 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行