[leetcode]745. Prefix and Suffix Search

49 篇文章 0 订阅

链接:https://leetcode.com/problems/prefix-and-suffix-search/description/

Given many wordswords[i] has weight i.

Design a class WordFilter that supports one function, WordFilter.f(String prefix, String suffix). It will return the word with given prefix and suffix with maximum weight. If no word exists, return -1.

Examples:

Input:
WordFilter(["apple"])
WordFilter.f("a", "e") // returns 0
WordFilter.f("b", "") // returns -1

Note:

  1. words has length in range [1, 15000].
  2. For each test case, up to words.length queries WordFilter.f may be made.
  3. words[i] has length in range [1, 10].
  4. prefix, suffix have lengths in range [0, 10].
  5. words[i] and prefix, suffix queries consist of lowercase letters only.

Consider the word 'apple'. For each suffix of the word, we could insert that suffix, followed by '{', followed by the word, all into the trie.

For example, we will insert '{apple', 'e{apple', 'le{apple', 'ple{apple', 'pple{apple', 'apple{apple'into the trie. Then for a query like prefix = "ap", suffix = "le", we can find it by querying our trie for le{ap.


'{'  的ascii码在紧接在'z'后面。


class TrieNode{
public:
    TrieNode* next[27];
    int weight;
    TrieNode()
    {
        memset(next,0,sizeof(next));
        weight=0;
    }
};

class WordFilter {
public:
  
    TrieNode* root;
    WordFilter(vector<string> words) {
        root=new TrieNode();
        for(int weight=0;weight<words.size();weight++)
        {
            string word=words[weight]+'{';
            for(int i=0;i<word.size();i++)
            {
                TrieNode* cur=root;
                cur->weight=weight;
                for(int j=i;j<2*word.size()-1;j++)
                {
                    int k=word[j%word.size()]-'a';
                    if(!cur->next[k])
                        cur->next[k]=new TrieNode();
                    cur=cur->next[k];
                    cur->weight=weight;
                }
            }
        }
    }
    
    int f(string prefix, string suffix) {
        TrieNode* p=root;
        for(auto c:(suffix+'{'+prefix))
        {
            if(!p->next[c-'a']) return -1;
            p=p->next[c-'a'];
        }
        return p->weight;
    }

};



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值