首页 > 其他 > 详细

205. Isomorphic Strings

时间:2018-07-31 10:10:06      阅读:146      评论:0      收藏:0      [点我收藏+]

问题描述:

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

Note:
You may assume both and have the same length.

 

解题思路:

可以用一个hash map来记录该字母上一次出现的位置。

若s和t为同构:

  1.若s中i位置的字母第一次出现,那么t中i位置的字母也应当第一次出现。

  2.若s中i位置的字母不是第一次出现,那么t中i位置的字母的上一次出现的位置应当与s[i]上一次出现的位置相同。

 

 

代码:

class Solution {
public:
    bool isIsomorphic(string s, string t) {
        unordered_map<char, int> m_s;
        unordered_map<char, int> m_t;
        for(int i = 0; i < s.size(); i++){
            if(m_s.count(s[i]) ^ m_t.count(t[i])) return false;
            else{
                if(m_s.count(s[i])){
                    if(m_s[s[i]] != m_t[t[i]]) return false;
                }
                m_s[s[i]] = i;
                m_t[t[i]] = i;
            }
        }
        return true;
    }
};

 

205. Isomorphic Strings

原文:https://www.cnblogs.com/yaoyudadudu/p/9393827.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!