摘要:如果出現(xiàn)過,必須映射必須唯一。如果映射正確,不斷嘗試,返回可能的情況,有一種情況成立,就是全局成立。
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出現(xiàn)過,必須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
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/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 ...
摘要:哈希表法復(fù)雜度時間空間思路這題幾乎和一模一樣,不同的就是之前是字母映射字母,現(xiàn)在是字母映射字符串而已。 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...
摘要:在線網(wǎng)站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個題。這是項(xiàng)目地址歡迎一起交流學(xué)習(xí)。 這篇文章記錄我練習(xí)的 LeetCode 題目,語言 JavaScript。 在線網(wǎng)站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...
摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經(jīng)到題,所以后面會調(diào)整自己,在刷算法與數(shù)據(jù)結(jié)構(gòu)的同時,攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區(qū)別...
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...
閱讀 2096·2021-11-23 09:51
閱讀 2839·2021-11-22 15:35
閱讀 2937·2019-08-30 15:53
閱讀 1038·2019-08-30 14:04
閱讀 3276·2019-08-29 12:39
閱讀 1802·2019-08-28 17:57
閱讀 1086·2019-08-26 13:39
閱讀 551·2019-08-26 13:34