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 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
Note:
You may assume both s and t have the same length.
class Solution { public boolean isIsomorphic(String s, String t) { if (s.length() != t.length()) return false; MapUsing Array to replace Mapmap = new HashMap<>(); for (int i = 0; i < s.length(); i++) { if (map.containsKey(s.charAt(i))) { if (map.get(s.charAt(i)) != t.charAt(i)) return false; } else { if (map.containsValue(t.charAt(i))) return false; map.put(s.charAt(i), t.charAt(i)); } } return true; } }
class Solution { public boolean isIsomorphic(String s, String t) { int[] stmap = new int[256]; int[] tsmap = new int[256]; Arrays.fill(stmap, -1); Arrays.fill(tsmap, -1); for (int i = 0; i < s.length(); i++) { if (stmap[s.charAt(i)] != tsmap[t.charAt(i)]) return false; stmap[s.charAt(i)] = i; tsmap[t.charAt(i)] = i; } return true; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/71958.html
摘要:最新更新思路和其他语言请访问哈希表法复杂度时间空间思路用一个哈希表记录字符串中字母到字符串中字母的映射关系,一个集合记录已经映射过的字母。或者用两个哈希表记录双向的映射关系。这里不能只用一个哈希表,因为要排除这种多对一的映射。 Isomorphic Strings 最新更新思路和其他语言请访问:https://yanjia.me/zh/2018/11/... Given two st...
摘要:微信公众号记录截图记录截图目前关于这块算法与数据结构的安排前。已攻略返回目录目前已攻略篇文章。会根据题解以及留言内容,进行补充,并添加上提供题解的小伙伴的昵称和地址。本许可协议授权之外的使用权限可以从处获得。 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...
摘要:哈希表法复杂度时间空间思路这题几乎和一模一样,不同的就是之前是字母映射字母,现在是字母映射字符串而已。 Word Pattern Given a pattern and a string str, find if str follows the same pattern. Examples: pattern = abba, str = dog cat cat dog should r...
阅读 3803·2021-11-24 09:39
阅读 3723·2021-11-22 12:07
阅读 1071·2021-11-04 16:10
阅读 755·2021-09-07 09:59
阅读 1863·2019-08-30 15:55
阅读 899·2019-08-30 15:54
阅读 698·2019-08-29 14:06
阅读 2440·2019-08-27 10:54