摘要:如果出现过,必须映射必须唯一。如果映射正确,不断尝试,返回可能的情况,有一种情况成立,就是全局成立。
pattern = "abab", str = "redblueredblue" should return true. pattern = "aaaa", str = "asdasdasdasd" should return true. pattern = "aabb", str = "xyzabcxzyabc" should return false.
public class Solution { public boolean wordPatternMatch(String pattern, String str) { HashMapmap = new HashMap<>(); Set set = new HashSet<>(); return match(pattern, 0, str, 0, map, set); } public boolean match(String pattern, int i, String str, int j, HashMap map, Set set){ // base case if(i == pattern.length() && j == str.length()) return true; if(i == pattern.length() || j == str.length()) return false; // 如果pattern出现过,必须char,pattern映射必须唯一。 // 如果映射正确,go deeper Character c = pattern.charAt(i); if(map.containsKey(c)){ String s = map.get(c); if(!str.startsWith(s, j)){ return false; } return match(pattern, i+1, str, j+s.length(), map, set); } // 不断尝试pattern,返回可能的情况,有一种情况成立,就是全局成立。 for(int k=j; k
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/66948.html
Problem Given a pattern and a string str, find if str follows the same pattern. Here follow means a full match, such that there is a bijection between a letter in pattern and a non-empty substring in ...
摘要:哈希表法复杂度时间空间思路这题几乎和一模一样,不同的就是之前是字母映射字母,现在是字母映射字符串而已。 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...
摘要:在线网站地址我的微信公众号完整题目列表从年月日起,每天更新一题,顺序从易到难,目前已更新个题。这是项目地址欢迎一起交流学习。 这篇文章记录我练习的 LeetCode 题目,语言 JavaScript。 在线网站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公众号: showImg(htt...
摘要:月下半旬攻略道题,目前已攻略题。目前简单难度攻略已经到题,所以后面会调整自己,在刷算法与数据结构的同时,攻略中等难度的题目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道题,目前已攻略 100 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
Problem Design a class which receives a list of words in the constructor, and implements a method that takes two words word1 and word2 and return the shortest distance between these two words in the l...
阅读 2063·2021-11-23 09:51
阅读 2814·2021-11-22 15:35
阅读 2911·2019-08-30 15:53
阅读 1010·2019-08-30 14:04
阅读 3251·2019-08-29 12:39
阅读 1743·2019-08-28 17:57
阅读 1035·2019-08-26 13:39
阅读 534·2019-08-26 13:34