trie(字典树) C++版本 Python版本

Posted chaosliang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了trie(字典树) C++版本 Python版本相关的知识,希望对你有一定的参考价值。

AcWing  835. Trie字符串统计    https://www.acwing.com/problem/content/837/

维护一个字符串集合,支持两种操作:

  1. “I x”向集合中插入一个字符串x;
  2. “Q x”询问一个字符串在集合中出现了多少次。

共有N个操作,输入的字符串总长度不超过 105105,字符串仅包含小写英文字母。

输入格式

第一行包含整数N,表示操作数。

接下来N行,每行包含一个操作指令,指令为”I x”或”Q x”中的一种。

输出格式

对于每个询问指令”Q x”,都要输出一个整数作为结果,表示x在集合中出现的次数。

每个结果占一行。

数据范围

1N21041≤N≤2∗104

输入样例:

5
I abc
Q abc
Q ab
I ab
Q ab

输出样例:

1
0
1



#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

const int N = 1e5+5;

int son[N][26], cnt[N], index;

char str[N];


void build(char str[])
{
    int p = 0;
    for(int i = 0; str[i]; ++ i)
    {
        int u =  str[i] - a;
        if(!son[p][u])
            son[p][u] = ++ index;
        p = son[p][u];
    }
    cnt[p] ++;
}

int query(char str[])
{
    int p =  0;
    for(int i = 0; str[i]; ++ i)
    {
        int u = str[i] - a;
        if(!son[p][u])
            return 0;
        p = son[p][u];
    }
    return cnt[p];
}

int main()
{
    int n;
    cin >> n;
    while(n --)
    {
        char op[2];
        scanf("%s%s", op, str);
        if(*op == I)
            build(str);
        else
            printf("%d
", query(str));
    }
    return 0;
}

 

 

N = int(1e5 + 5)
son = [[0 for i in range(26)] for i in range(N)]
cnt = [0 for i in range(N)]
index = 0


def insert(x):
    global index
    p = 0
    for i in range(len(x)):
        t = ord(x[i]) - ord(a)
        if not son[p][t]:
            index += 1
            son[p][t] = index
        p = son[p][t]
    cnt[p] += 1


def query(x):
    p = 0
    for i in range(len(x)):
        t = ord(x[i]) - ord(a)
        if not son[p][t]:
            return 0
        p = son[p][t]
    return cnt[p]


n = int(input())
while n:
    n -= 1
    t = input().split()
    op = t[0]
    s = t[1]
    if op == I:
        insert(s)
    else:
        res = query(s)
        print(res)

 

 

以上是关于trie(字典树) C++版本 Python版本的主要内容,如果未能解决你的问题,请参考以下文章

hdoj1251 统计难题 数据结构-Trie树裸题

Tire树(字典树)

支持中文的基于词为基本粒度的前缀树(prefix trie)python实现

Trie树(字典树)

剑指Offer——Trie树(字典树)

『字典树 trie』