摘要:最新更新思路和其他语言请访问哈希表法复杂度时间空间思路用一个哈希表记录字符串中字母到字符串中字母的映射关系,一个集合记录已经映射过的字母。或者用两个哈希表记录双向的映射关系。这里不能只用一个哈希表,因为要排除这种多对一的映射。
Isomorphic Strings 最新更新思路和其他语言请访问:https://yanjia.me/zh/2018/11/...
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.
时间 O(N) 空间 O(N)
思路用一个哈希表记录字符串s中字母到字符串t中字母的映射关系,一个集合记录已经映射过的字母。或者用两个哈希表记录双向的映射关系。这里不能只用一个哈希表,因为要排除egg->ffffd这种多对一的映射。
代码public class Solution { public boolean isIsomorphic(String s, String t) { Mapmap = new HashMap (); Set set = new HashSet (); if(s.length() != t.length()) return false; for(int i = 0; i < s.length(); i++){ char sc = s.charAt(i), tc = t.charAt(i); if(map.containsKey(sc)){ // 如果已经给s中的字符建立了映射,检查该映射是否和当前t中字符相同 if(tc != map.get(sc)) return false; } else { // 如果已经给t中的字符建立了映射,就返回假,因为出现了多对一映射 if(set.contains(tc)) return false; map.put(sc, tc); set.add(tc); } } return true; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/64498.html
Problem 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 an...
摘要:微信公众号记录截图记录截图目前关于这块算法与数据结构的安排前。已攻略返回目录目前已攻略篇文章。会根据题解以及留言内容,进行补充,并添加上提供题解的小伙伴的昵称和地址。本许可协议授权之外的使用权限可以从处获得。 Create by jsliang on 2019-07-15 11:54:45 Recently revised in 2019-07-15 15:25:25 一 目录 不...
摘要:月下半旬攻略道题,目前已攻略题。目前简单难度攻略已经到题,所以后面会调整自己,在刷算法与数据结构的同时,攻略中等难度的题目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道题,目前已攻略 100 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
摘要:如果你还不是很了解什么是同构,请先自行。现在市面上有很多优秀同构模板,但是其中有不少不能完美解决所有难题,只有其中一部分可以,但是这一部分模板却又集成了很多难懂的黑科技,熟悉周期较长,且难以扩展和维护。 如果你还不是很了解什么是同构,请先自行Google。 现在市面上有很多优秀同构模板,但是其中有不少不能完美解决所有难题,只有其中一部分可以,但是这一部分模板却又集成了很多难懂的黑科技,...
阅读 2442·2021-11-24 09:39
阅读 3383·2021-11-15 11:37
阅读 2161·2021-10-08 10:04
阅读 3923·2021-09-09 11:54
阅读 1865·2021-08-18 10:24
阅读 990·2019-08-30 11:02
阅读 1774·2019-08-29 18:45
阅读 1632·2019-08-29 16:33