• 字符串同构问题 字符串操作:数组计数字符个数问题


    http://blog.csdn.net/eastmount/article/details/48614121

    题目概述:

    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.

    解题方法:
            该题意是判断两个字符串s和t是否是同构的。(注意字符不仅是字母)
            最简单的方法是通过计算每个字符出现的个数并且相应位置字母对应,但是两层循环肯定TLE。所以需要通过O(n)时间比较,采用的方法是:
            eg: "aba" <> "baa"  return false
            关键代码:nums[s[i]]=t[i]  numt[t[i]]=s[i] 再比较是否相同 
            nums['a']='b' numt['b']='a'  (第一次出现)
            nums['b']='a' numt['a']='b'  (第一次出现)
            nums['a']='b' <> t[2]='a'     (第二次出现)  return false
            该方法技巧性比较强,当然如果你使用C++的映射就非常容易实现了。

     

    C++推荐代码:

            参考:http://www.cnblogs.com/easonliu/p/4465650.html
            题目很简单,也很容易想到方法,就是记录遍历s的每一个字母,并且记录s[i]到t[i]的映射,当发现与已有的映射不同时,说明无法同构,直接return false。但是这样只能保证从s到t的映射,不能保证从t到s的映射,所以交换s与t的位置再重来一遍上述的遍历就OK了。

    [cpp] view plaincopy
     
    1. class Solution {  
    2. public:  
    3.     bool isIsomorphic(string s, string t) {  
    4.         if (s.length() != t.length()) return false;  
    5.         map<char, char> mp;  
    6.         for (int i = 0; i < s.length(); ++i) {  
    7.             if (mp.find(s[i]) == mp.end()) mp[s[i]] = t[i];  
    8.             else if (mp[s[i]] != t[i]) return false;  
    9.         }  
    10.         mp.clear();  
    11.         for (int i = 0; i < s.length(); ++i) {  
    12.             if (mp.find(t[i]) == mp.end()) mp[t[i]] = s[i];  
    13.             else if (mp[t[i]] != s[i]) return false;  
    14.         }  
    15.         return true;  
    16.     }  
    17. };  

    (By:Eastmount 2015-9-21 凌晨1点半   http://blog.csdn.net/eastmount/)

  • 相关阅读:
    Vue的router和route的区别
    对cookie进行编解码用到的函数escape,unescape
    动态控制按钮的禁用和启用
    追踪算法总结
    MATLAB imread读取imwrite保存图片前后矩阵数据不一样
    图像质量评价和视频质量评价(IQA/VQA)
    c++ 使用torchscript 加载训练好的pytorch模型
    Transformer(self attention pytorch)代码
    tensorflow 单机多GPU训练时间比单卡更慢/没有很大时间上提升
    python+selenium爬取关键字搜索google图片
  • 原文地址:https://www.cnblogs.com/zhizhan/p/4870038.html
Copyright © 2020-2023  润新知