LeetCode:Word Pattern - 字符串模式匹配

1、题目名称

Word Pattern(字符串模式匹配)

2、题目地址

https://leetcode.com/problems/word-pattern/

3、题目内容

英文:Given a pattern and a string str, find if str follows the same pattern.

中文:给出一组模式(pattern)和一个字符串(str),查看字符串是否与模式匹配

例如:

  1. pattern = "abba",str = "dog cat cat dog",返回真
  2. pattern = "abba",str = "dog cat cat fish",返回假
  3. pattern = "aaaa",str = "dog cat cat dog",返回假
  4. pattern = "abba",str = "dog dog dog dog",返回假

注意:

模式仅有小写字母构成,字符串被单个空格字符隔开,字符串中每个单词都由小写字母构成;模式和字符串的前后都不包含多余的空格;模式中的每个字母必须匹配一个字符串中长度至少为1的单词。

4、解题方法1

使用HashMap可以很方便地解决本问题。

需要注意的是,模式中的两个不同的字符,不能对应字符串中相同的单词。

Java代码如下:

import java.util.HashMap;

/**
 * @功能说明:LeetCode 290 - Word Pattern
 * @开发人员:Tsybius2014
 * @开发时间:2015年10月9日
 */
public class Solution {
    
    /**
     * 字符串模式匹配
     * @param pattern
     * @param str
     * @return
     */
    public boolean wordPattern(String pattern, String str) {
        
        if (pattern.isEmpty() || str.isEmpty()) {
            return false;
        }
        
        String[] s = str.split(" ");
        if (s.length != pattern.length()) {
            return false;
        }
        
        HashMap<Character, String> hashMap = new HashMap<Character, String>();
        for (int i = 0; i < pattern.length(); i++) {
            if (hashMap.containsKey(pattern.charAt(i))) {
                if (!hashMap.get(pattern.charAt(i)).equals(s[i])) {
                    return false;
                }
            } else if (hashMap.containsValue(s[i])) {
                return false;
            } else {
                hashMap.put(pattern.charAt(i), s[i]);
            }
        }
        
        return true;
    }
}

5、解题方法2

另一个办法需要利用HashMap中put函数的性质。

put函数的声明如下:

public V put(K key, V value)

它的功能是将键值对存入map中,如果map中原本就包含要插入的键,将旧值替换为新值。对于该函数的返回值,如果要插入的键在字典中不存在,则返回null,否则返回替换前的值。根据put函数的性质,可以作出如下Java代码:

import java.util.HashMap;
import java.util.Objects;

/**
 * @功能说明:LeetCode 290 - Word Pattern
 * @开发人员:Tsybius2014
 * @开发时间:2015年10月9日
 */
public class Solution {
    
    /**
     * 模式匹配
     * @param pattern
     * @param str
     * @return
     */
    public boolean wordPattern(String pattern, String str) {
        
        if (pattern.isEmpty() || str.isEmpty()) {
            return false;
        }
        
        String[] s = str.split(" ");
        if (s.length != pattern.length()) {
            return false;
        }
        
        @SuppressWarnings("rawtypes")
        HashMap<Comparable, Integer> hashMap = new HashMap<Comparable, Integer>();
        for (int i = 0; i < pattern.length(); i++) {
            if (!Objects.equals(hashMap.put(pattern.charAt(i), i), hashMap.put(s[i], i)))
                return false;
        }
        
        return true;
    }
}

END

时间: 2024-12-15 06:52:45

LeetCode:Word Pattern - 字符串模式匹配的相关文章

LeetCode Word Pattern II

原题链接在这里:https://leetcode.com/problems/word-pattern-ii/ 题目: 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

(LeetCode)Word Pattern --- 模式匹配

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 word in str. Examples: pattern = "abba", str = "dog cat cat d

Leetcode:Word Break 字符串分解为单词

Word Break Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words. For example, given s = "leetcode", dict = ["leet", "code"]. Return t

LeetCode Word Pattern (模拟)

题意: 给出一个模式串pattern,再给出一个串str,问str的模板是否是pattern. 思路: 注意点:只要对于所有pattern[i]相同的i,str中对应的所有words[i]也必须相同,反过来,一个words[i]对应的也只有一个pattern[i]. 乱搞: 1 class Solution { 2 public: 3 bool wordPattern(string pattern, string str) { 4 set<string> sett[26]; 5 map<

[LeetCode]Word Ladder 字符串的最短转换距离 (Dijkstra)

要求最短距离.采用dijkstra求节点间最短路径. 注意点:如果是枚举字典中两两元素是否可转换的话,会超时. 改进:对于每个字符串,枚举其各位字符的取值情况,则对于长度为n的一个字符串要枚举n*26次. 如果只是简单的枚举,则会出现重边: 如abc,bbc,cbc,建图后每两个节点间均有两条双向边,这对于邻接表存储的图会存在很多冗余边. 解决方法:每个节点每位字符只能从原始字符往后枚举,即 枚举各字符串第一位的话 abc:bbc,cbc,dbc,... bbc:cbc,dbc,... cbc:

【一天一道LeetCode】#290. Word Pattern

一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 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 pa

LeetCode 290 Word Pattern(单词模式)(istringstream、vector、map)(*)

翻译 给定一个模式,和一个字符串str.返回str是否符合同样的模式. 这里的符合意味着全然的匹配,所以这是一个一对多的映射,在pattern中是一个字母.在str中是一个为空的单词. 比如: pattern = "abba". str = "dog cat cat dog" 应该返回真. pattern = "abba", str = "dog cat cat fish" 应该返回假. pattern = "aaa

leetcode(一)Word Pattern

题目描述: 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 word in str. Examples: pattern = "abba", str = "dog cat

[LeetCode] 291. Word Pattern II 词语模式 II

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 str. Examples: pattern = "abab", str = "redbluer