前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0290 - Word Pattern

LeetCode 0290 - Word Pattern

作者头像
Reck Zhang
发布2021-08-11 11:48:12
1990
发布2021-08-11 11:48:12
举报
文章被收录于专栏:Reck ZhangReck Zhang

Word Pattern

Desicription

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.

Example 1:

代码语言:javascript
复制
Input: pattern = "abba", str = "dog cat cat dog"
Output: true

Example 2:

代码语言:javascript
复制
Input:pattern = "abba", str = "dog cat cat fish"
Output: false

Example 3:

代码语言:javascript
复制
Input: pattern = "aaaa", str = "dog cat cat dog"
Output: false

Example 4:

代码语言:javascript
复制
Input: pattern = "abba", str = "dog dog dog dog"
Output: false

Notes: You may assume pattern contains only lowercase letters, and str contains lowercase letters separated by a single space.

Solution

代码语言:javascript
复制
class Solution {
public:
    bool wordPattern(string pattern, string str) {
        vector<string> vec_str;
        istringstream is(str);
        for(string s; is >> s; ) {
            vec_str.push_back(s);
        }
        if(pattern.size() != vec_str.size()) {
            return false;
        }
        map<char, int> pattern_map;
        map<string, int> string_map;
        for(int i = 0; i < pattern.size(); i++) {
            if(pattern_map[pattern[i]] != string_map[vec_str[i]]) {
                return false;
            }
            pattern_map[pattern[i]] = i + 1;
            string_map[vec_str[i]] = i + 1;
        }
        return true;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-12-20,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Word Pattern
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档