745. Prefix and Suffix Search

原网址为 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.

代码:

class TrieNode {
public:
    TrieNode() {
        children.resize(27, NULL);
        weight = 0;
    }
public:
    vector<TrieNode*> children;
    int weight;
};

class WordFilter {
public:
    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->children[k] == NULL) {
                        cur->children[k] = new TrieNode();
                    }
                    cur = cur->children[k];
                    cur->weight = weight;
                    
                }
            }
        }
    }
    
    int f(string prefix, string suffix) {
        TrieNode *cur = root;
        string q = suffix + "{" + prefix;
        for (int i = 0; i < q.size(); i++) {
            if (cur->children[q[i] - 'a'] == NULL) {
                return -1;
            }
            cur = cur->children[q[i] - 'a'];
        }
        return cur->weight;
    }
public:
    TrieNode *root;
};


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值