码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 205. Isomorphic Strings

时间:2020-02-14 11:24:26      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:string   com   https   href   return   for   ring   tco   memset   

题目

class Solution {
public:
    int m[300];
    int m2[300];
    bool isIsomorphic(string s, string t) {
        
        if(s=="")
            return true;
        
        memset(m,-1,sizeof(m));
        
        for(int i=0;i<s.length();i++)
        {
            if(m[s[i]]==-1)
            {
                if(m2[t[i]]==-1)
                    return false;
                m[s[i]] = t[i];
                m2[t[i]]=-1;
            }
            else
            {
                if(m[s[i]]!=t[i])
                    return false;
            }
        }
        return true;
    }
};

LeetCode 205. Isomorphic Strings

标签:string   com   https   href   return   for   ring   tco   memset   

原文地址:https://www.cnblogs.com/dacc123/p/12306332.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!