Implement Trie (Prefix Tree)以及实现字典树(前缀树)

LeetCode - 208. Implement Trie (Prefix Tree)以及实现字典树(前缀树)

  • 基础知识和结构
  • 字符串的插入
  • 统计某个字符串的数量 || 查询是否有某个字符串
  • 统计以某个字符串为前缀的字符串数量 || 是否有某个前缀
  • 字符串的删除
  • 完整测试代码
  • 题目解析 
  • 使用Map来保存next
  • 更多字典树

基础知识和结构

MapTrie的差别,关于映射集合等可以看这篇博客

在这里插入图片描述

  • 字典树也叫做前缀树,可以存储一组元素(一般是字符串),可以快速的查找某个字符串在树中的个数以及寻找以某个字符串为前缀的字符串的个数,先看下图为一些字符串插入到字典树中的情形。

字典树的存储结构:

  • 首先字母是画在树的边上的;
  • 而结点中的path代表的是经过这个结点的字母的次数;
  • 为了方便前缀的计算,而end表示的是以这个结点结尾的字符串的数量,方便统计树中某个字符串的数量。
  • next表示的是多个儿子结点,因为可以有大小写字母,所以我初始化为52(如果是小写字母的就为26)(也可以使用Map来存储)。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Trie {

private class Node{
public int path;
public int end;
public Node[] next;//使用整数表示字符 c - 'a'

public Node() {
path = 0;
end = 0;
next = new Node[26];
}
}

private Node root;

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

例如: 下面的这颗字典树:

这里写图片描述

再如: 树中有"abc","ab","ab","abd","bc","bd","cd","cde","ce"总共9个字符串。如下的结构:

这里写图片描述


字符串的插入

  • 遍历每个字符,算出每个字符-'a'的值,表示的是在结点儿子中的位置;
  • 一开始结点的儿子都是null(nexts数组结构),如果对应的位置为null,创建即可,然后走向下一个结点,并维护path
  • 记得遍历完之后,最后一个结点的end++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//插入一个字符
public void insert(String word){
if(word == null)
return ;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null){ //没有就新建
cur.next[index] = new Node();
}
cur = cur.next[index];
cur.path++; //经过这里
}
cur.end++;//以这个结尾
}

统计某个字符串的数量 || 查询是否有某个字符串

  • 这个很简单,怎么插入的就怎么查找,如果查找到某个结点(数组还没有遍历完),就找到nexts[index]为空,直接返回0就可以了;
  • 否则遍历完之后,返回结点的end的值。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//统计某个字符串的数量
public int count(String word){
if(word == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.end;
}
//查询是否有某个字符串
public boolean search(String word){
return count(word) > 0;
}

统计以某个字符串为前缀的字符串数量 || 是否有某个前缀

  • 这个和上面都是一个套路,遍历完之后,返回结点的path的值。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   public int prefixNum(String prefix){
if(prefix == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < prefix.length(); i++){
index = prefix.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.path; //返回这个经过的  也就是以这个为前驱的
}
//是否有某个前缀(以某个字符串开头)
public boolean startsWith(String prefix){
return prefixNum(prefix) > 0;
}

字符串的删除

我们删除某个字符串的时候,不能直接删除,要看某个结点的path的值:

  • 如果path1,以后的所有结点都可以删除了(释放后面所有结点);

这里写图片描述

  • 否则只是将结点的path--就可以了。

这里写图片描述

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public void remove(String word){
if(word == null)
return;
if(!search(word)) //不包含这个字符串
return;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(--cur.next[index].path == 0){
cur.next[index] = null; //释放掉下面的这棵树
return ;
}
cur = cur.next[index];
}
cur.end--; //最后这个字符串也要--
}


完整测试代码

上面图形的例子:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
public class Trie {

private class Node{
public int path;
public int end;
public Node[] next;//使用整数表示字符 c - 'a'

public Node() {
path = 0;
end = 0;
next = new Node[26];
}
}

private Node root;

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

//插入一个字符
public void insert(String word){
if(word == null)
return ;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null){ //没有就新建
cur.next[index] = new Node();
}
cur = cur.next[index];
cur.path++; //经过这里
}
cur.end++;
}

//统计某个字符串的数量
public int count(String word){
if(word == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.end;
}

public boolean search(String word){
return count(word) > 0;
}

public int prefixNum(String prefix){
if(prefix == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < prefix.length(); i++){
index = prefix.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.path; //返回这个经过的  也就是以这个为前驱的
}

public boolean startsWith(String prefix){
return prefixNum(prefix) > 0;
}

public void remove(String word){
if(word == null)
return;
if(!search(word)) //不包含这个字符串
return;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(--cur.next[index].path == 0){
cur.next[index] = null; //释放掉下面的这棵树
return ;
}
cur = cur.next[index];
}
cur.end--; //最后这个字符串也要--
}


public static void main(String[] args) {
Trie trie = new Trie();

trie.insert("abc");
trie.insert("ab");
trie.insert("ab");
trie.insert("abd");
trie.insert("bc");
trie.insert("bd");
trie.insert("cd");
trie.insert("cde");
trie.insert("ce");

System.out.println(trie.count("ab"));
trie.remove("ab");
System.out.println(trie.count("ab"));

System.out.println(trie.count("abd"));
trie.remove("ab");
System.out.println(trie.count("ab"));
System.out.println(trie.count("abd"));

trie.remove("abd");
System.out.println(trie.count("abd"));
}
}

测试结果输出:

1
2
3
4
5
6
2
1
1
0
1
0

题目解析

题目链接

https://leetcode.com/problems/implement-trie-prefix-tree/description/

题目

在这里插入图片描述

解析

运用上面的操作完全能解决这个问题:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
class Trie {
private class Node{
public int path;
public int end;
public Node[] next;//使用整数表示字符 c - 'a'

public Node() {
path = 0;
end = 0;
next = new Node[26];
}
}

private Node root;

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

//插入一个字符
public void insert(String word){
if(word == null)
return ;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null){ //没有就新建
cur.next[index] = new Node();
}
cur = cur.next[index];
cur.path++; //经过这里
}
cur.end++;
}

//统计某个字符串的数量
public int count(String word){
if(word == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < word.length(); i++){
index = word.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.end;
}

public boolean search(String word){
return count(word) > 0;
}

public int prefixNum(String prefix){
if(prefix == null)
return 0;
Node cur = root;
int index = 0;
for(int i = 0; i < prefix.length(); i++){
index = prefix.charAt(i) - 'a';
if(cur.next[index] == null)
return 0;
cur = cur.next[index];
}
return cur.path; //返回这个经过的  也就是以这个为前驱的
}

public boolean startsWith(String prefix){
return prefixNum(prefix) > 0;
}
}

使用Map来保存next

还有一种写法就是

  • 使用Map来保存next数组,这样不只可以存26或者52个孩子:

还是上面那个题目代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
private class Node{
public int path;
public int end;
public HashMap<Character,Node>next;

public Node() {
path = 0;
end = 0;
next = new HashMap<>();
}
}

private Node root;

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

//插入一个字符
public void insert(String word){
if(word == null)
return ;
Node cur = root;
char c;
for(int i = 0; i < word.length(); i++){
c = word.charAt(i);
if(cur.next.get(c) == null){ //没有就新建
cur.next.put(c,new Node());
}
cur = cur.next.get(c);
cur.path++; //经过这里
}
cur.end++;
}

//统计某个字符串的数量
public int count(String word){
if(word == null)
return 0;
Node cur = root;
char c;
for(int i = 0; i < word.length(); i++){
c = word.charAt(i);
if(cur.next.get(c) == null)
return 0;
cur = cur.next.get(c);
}
return cur.end;
}

public boolean search(String word){
return count(word) > 0;
}

public int prefixNum(String prefix){
if(prefix == null)
return 0;
Node cur = root;
char c;
for(int i = 0; i < prefix.length(); i++){
c = prefix.charAt(i);
if(cur.next.get(c) == null)
return 0;
cur = cur.next.get(c);
}
return cur.path; //返回这个经过的  也就是以这个为前驱的
}

public boolean startsWith(String prefix){
return prefixNum(prefix) > 0;
}

public void remove(String word){
if(word == null)
return;
if(!search(word)) //不包含这个字符串
return;
Node cur = root;
char c;
for(int i = 0; i < word.length(); i++){
c = word.charAt(i);
if(--cur.next.get(c).path == 0){
cur.next.remove(c);
return ;
}
cur = cur.next.get(c);
}
cur.end--; //最后这个字符串也要--
}

更多字典树

  • 压缩字典树;

这里写图片描述

  • 三分搜索树;

这里写图片描述

欢迎关注我们的公众号
0%