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;
        }
    };
    
  • 相关阅读:
    windows性能计数器
    bootstrap2.0与3.0的区别
    prototype.js简介
    .NET生成静态页面并分页
    .net 生成 静态页面
    传统的生成静态页面
    vimrc
    nginx模块动态加载(http)
    ffmpeg --help full
    confiure
  • 原文地址:https://www.cnblogs.com/vinnson/p/13303794.html
Copyright © 2011-2022 走看看