算法模板2--字符串系列之前缀树与KMP

本文介绍了如何实现Trie前缀树数据结构,包括插入、搜索和判断前缀功能,同时提到了KMP算法在字符串匹配中的应用,展示了在IT技术中这两个主题的实用价值。
摘要由CSDN通过智能技术生成

前缀树(存在检查、前缀检查)

Trie(发音类似 “try”)或者说 前缀树 是一种树形数据结构,用于高效地存储和检索字符串数据集中的键。这一数据结构有相当多的应用情景,例如自动补完和拼写检查。
请你实现 Trie 类:

  • Trie() 初始化前缀树对象。
  • void insert(String word) 向前缀树中插入字符串 word 。
  • boolean search(String word) 如果字符串 word 在前缀树中,返回 true(即,在检索之前已经插入);否则,返回 false 。
  • boolean startsWith(String prefix) 如果之前已经插入的字符串 word 的前缀之一为 prefix ,返回 true ;否则,返回 false

参考:https://leetcode.cn/problems/implement-trie-prefix-tree/solutions/721110/gong-shui-san-xie-yi-ti-shuang-jie-er-we-esm9/

    class Trie {
        class TrieNode {
            boolean end;
            TrieNode[] tns = new TrieNode[26];
        }
        TrieNode root;

        public Trie() {
            root = new TrieNode();
        }

        public void insert(String word) {
            TrieNode p = root;
            for (int i = 0; i < word.length(); i++) {
                int u = word.charAt(i) - 'a';
                if (p.tns[u] == null) p.tns[u] = new TrieNode();
                p = p.tns[u];
            }
            p.end = true;
        }

        public boolean search(String word) {
            TrieNode p = root;
            for (int i = 0; i < word.length(); i++) {
                int u = word.charAt(i) - 'a';
                if (p.tns[u] == null) return false;
                p = p.tns[u];
            }
            return p.end; 
        }

        public boolean startsWith(String prefix) {
            TrieNode p = root;
            for (int i = 0; i < prefix.length(); i++) {
                int u = prefix.charAt(i) - 'a';
                if (p.tns[u] == null) return false;
                p = p.tns[u];
            }
            return true;
        }
    }

KMP(字符串匹配)

参考 https://programmercarl.com/0028.%E5%AE%9E%E7%8E%B0strStr.html#%E5%85%B6%E4%BB%96%E8%AF%AD%E8%A8%80%E7%89%88%E6%9C%AC

    class Solution {
        public int strStr(String haystack, String needle) {
            int m = haystack.length();
            int n = needle.length();
            int[] next = new int[n];
            getNext(next,needle);

            int j = 0;
            for (int i = 0; i < m; i++) {
                // 不匹配,要回退
                while (j >0 && haystack.charAt(i) != needle.charAt(j)) {
                    j = next[j-1];
                }

                if (haystack.charAt(i) == needle.charAt(j))
                    j++;

                if (j == needle.length())
                    return i-needle.length()+1;

            }

            return -1;
        }

        public void getNext(int[] next, String str) {
            next[0] = 0;
            int j =0;
            for (int i = 1; i < str.length(); i++) {
                while (j >0 && str.charAt(j) != str.charAt(i))
                    j = next[j-1];
                if (str.charAt(i) == str.charAt(j))
                    j++;
                next[i] = j;
            }
        }
    }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值