-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
118 lines (96 loc) · 2.93 KB
/
Program.cs
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
using static System.Console;
var trie = new Trie();
trie.Insert("hello");
trie.Insert("helium");
trie.Insert("helicopters");
trie.Insert("help");
trie.Insert("hero");
trie.Insert("cat");
trie.Insert("category");
trie.Insert("dog");
trie.Insert("player");
trie.Insert("play");
WriteLine("############ Search results ############");
WriteLine($"helicopter: {trie.Search("helicopter")}"); // False
WriteLine($"helicopters: {trie.Search("helicopters")}"); // True
WriteLine($"hel: {trie.Search("hel")}"); // False
WriteLine($"help: {trie.Search("help")}"); // True
WriteLine($"player: {trie.Search("player")}"); // True
WriteLine("############ StartsWith results ############");
WriteLine($"helicopter: {trie.StartsWith("helicopter")}"); // True
WriteLine($"helicopters: {trie.StartsWith("helicopters")}"); // True
WriteLine($"hel: {trie.StartsWith("hel")}"); // True
WriteLine($"help: {trie.StartsWith("hy")}"); // False
WriteLine($"pl: {trie.StartsWith("pl")}"); // True
WriteLine("############ Delete ############");
WriteLine($"player: {trie.Search("player")}"); // True
WriteLine($"play: {trie.Search("play")}"); // True
trie.Delete("play");
WriteLine($"play: {trie.Search("play")}"); // False
WriteLine($"player: {trie.Search("player")}"); // True
class Node
{
private const int ALPHABET_SIZE = 26;
public Dictionary<char, Node> Children = new(ALPHABET_SIZE);
public bool IsEndOfWord { get; set; } = false;
}
class Trie
{
private readonly Node root = new();
public void Insert(string word)
{
var node = root;
for(int i = 0; i < word.Length; i++)
{
var ch = word[i];
if (!node.Children.ContainsKey(ch))
{
node.Children[ch] = new();
}
node = node.Children[ch];
}
node.IsEndOfWord = true;
}
public bool Search(string word)
{
var node = root;
for(int i = 0; i < word.Length; i++)
{
var ch = word[i];
if (!node.Children.ContainsKey(ch))
{
return false;
}
node = node.Children[ch];
}
return node.IsEndOfWord; // Only return true if it's actually the end of a word
}
public bool StartsWith(string prefix)
{
var node = root;
for(int i = 0; i < prefix.Length; i++)
{
var ch = prefix[i];
if (!node.Children.ContainsKey(ch))
{
return false;
}
node = node.Children[ch];
}
return true; // If all chars in the prefix are found, return true
}
public void Delete(string word)
{
var node = root;
for(int i = 0; i < word.Length; i++)
{
var ch = word[i];
if (!node.Children.ContainsKey(ch))
{
return;
}
node = node.Children[ch];
}
node.IsEndOfWord = false;
}
}