zoukankan      html  css  js  c++  java
  • 【刷题-LeetCode】205. Isomorphic Strings

    1. 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.

    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和t->s都是单射(一一映射),用两个map分别表示正向和反向的映射关系

    class Solution {
    public:
        bool isIsomorphic(string s, string t) {
            if(s.size() != t.size())return false;
            unordered_map<char, char>mp1, mp2;
            for(int i = 0; i < s.size(); ++i){
                if(mp1[t[i]] && mp1[t[i]] != s[i])return false;
                if(mp2[s[i]] && mp2[s[i]] != t[i])return false;
                mp1[t[i]] = s[i];
                mp2[s[i]] = t[i];
            }
            return true;
        }
    };
    
  • 相关阅读:
    pytorch和tensorflow
    创建用户
    linux 软件安装
    python 常见错误集锦
    Anaconda常规用法
    两个电脑之间文件快穿-基于用一个局域网和python的使用
    python-pip使用整理
    时间序列 -prophet
    SQL习题集锦
    取色器RGB转换htlm
  • 原文地址:https://www.cnblogs.com/vinnson/p/13303794.html
Copyright © 2011-2022 走看看