面试题 17.17. 多次搜索

面试题 17.17. 多次搜索

https://leetcode-cn.com/problems/multi-search-lcci/

/**
 *
 * 执行用时: 37 ms
 * 内存消耗: 59.9 MB
 */
class Solution {
    public int[][] multiSearch(String big, String[] smalls) {
        if (big == null || smalls == null) {
            return null;
        }
        Trie trie = new Trie();
        trie.insertWords(smalls);
        return trie.searchBigWord(big);
    }
}


class Trie {
    private int position;
    private int wordSize;
    private Trie[] children;
    private boolean end;

    public Trie() {
        position = 0;
        children = new Trie[26];
    }

    public void insertWords(String[] smallWords) {
        wordSize = smallWords.length;

        for (int i = 0; i < smallWords.length; i++) {
            insertPer(smallWords[i], i);
        }
    }

    public void insertPer(String word, int position) {
        Trie node = this;

        for (int i = 0; i < word.length(); i++) {
            if (node.children[word.charAt(i) - 'a'] == null) {
                node.children[word.charAt(i) - 'a'] = new Trie();
            }
            node = node.children[word.charAt(i) - 'a'];
        }
        node.position = position;
        node.end = true;
    }

    public int[][] searchBigWord(String bigWord) {
        List<List<Integer>> temp = new ArrayList<>(this.wordSize);

        for (int i = 0; i < wordSize; i++) {
            temp.add(new ArrayList<Integer>());
        }

        for (int i = 0; i < bigWord.length(); i++) {
            String subWord = bigWord.substring(i);
            Trie node = this;
            for (int j = 0; j < subWord.length(); j++) {
                if (node.children[subWord.charAt(j) - 'a'] == null) {
                    break;
                }
                node = node.children[subWord.charAt(j) - 'a'];
                if (node.end) {
                    temp.get(node.position).add(i);
                }
            }
        }

        int[][] res = new int[temp.size()][];
        for (int i = 0; i < temp.size(); i++) {
            List<Integer> subList = temp.get(i);
            res[i] = new int[subList.size()];
            for (int j = 0; j < subList.size(); j++) {
                res[i][j] = subList.get(j);
            }
        }
        return res;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值