温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

leetCode 205. Isomorphic Strings 哈希 字符串相似

发布时间:2020-08-10 20:47:01 来源:网络 阅读:896 作者:313119992 栏目:编程语言

205. Isomorphic Strings 字符串相似


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.

For example,
Given "egg""add", return true.

Given "foo""bar", return false.

Given "paper""title", return true.

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

题目大意:

判断两个字符串是否相似。

思路:

使用双map来进行比较。map键为字符串元素,值为字符上一次出现的位置。

代码如下:

class Solution {
public:
    bool isIsomorphic(string s, string t) {
        if(s.size() != t.size())
            return false;
        unordered_map<char,int> maps;
        unordered_map<char,int> mapt;
        for(int i = 0;i < s.size();i++)
        {
            if(maps.find(s[i]) == maps.end() && mapt.find(t[i]) == mapt.end())
            {
                maps.insert(pair<char,int>(s[i],i));
                mapt.insert(pair<char,int>(t[i],i));
            }
            else if(maps.find(s[i]) != maps.end() && mapt.find(t[i]) != mapt.end())
            {
                if(maps[s[i]] != mapt[t[i]])
                    return false;
                else
                {
                    maps[s[i]] = i;
                    mapt[t[i]] = i;
                }
            }
            else
                return false;
        }
        return true;
    }
};

2016-08-13 17:15:21

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI