leetcode 290: Word Pattern

本文介绍了一种用于判断字符串是否遵循给定模式的算法。通过使用HashMap来建立字符与单词之间的映射关系,并利用HashSet确保每个字符映射到不同的单词,以此实现模式与字符串的有效匹配。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Word Pattern

Total Accepted: 1733 Total Submissions: 6204 Difficulty: Easy

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

Examples:

  1. pattern = "abba", str = "dog cat cat dog" should return true.
  2. pattern = "abba", str = "dog cat cat fish" should return false.
  3. pattern = "aaaa", str = "dog cat cat dog" should return false.
  4. pattern = "abba", str = "dog dog dog dog" should return false.

Notes:

  1. Both pattern and str contains only lowercase alphabetical letters.
  2. Both pattern and str do not have leading or trailing spaces.
  3. Each word in str is separated by a single space.
  4. Each letter in pattern must map to a word with length that is at least 1.

Credits:
Special thanks to @minglotus6 for adding this problem and creating all test cases.

[思路]

char 和 string 一一对应. 建一个map. 同时set里面保存string, 避免重复, 出现多对1的情况.

[CODE]

public class Solution {
    public boolean wordPattern(String pattern, String str) {
        //input check
        
        String[] strs = str.split(" ");
        if(pattern.length() != strs.length  ) return false;
        
        Map<Character, String> map = new HashMap<>();
        Set<String> unique = new HashSet<>();
        
        for(int i=0; i<pattern.length(); i++) {
            char c = pattern.charAt(i);
            if(map.containsKey(c) ) {
                if(!map.get(c).equals(strs[i])) return false;
            } else {
                if(unique.contains(strs[i])) return false;
                map.put(c, strs[i]);
                unique.add(strs[i]);
            }
        }
        return true;
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值