-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTries.cpp
More file actions
70 lines (70 loc) · 1.65 KB
/
Copy pathTries.cpp
File metadata and controls
70 lines (70 loc) · 1.65 KB
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
#include <bits/stdc++.h>
#define N 1000000009
#define M 1000000
using namespace std;
typedef long long int lli;
struct TrieNode
{
bool endofword;
struct TrieNode *children[26];
};
struct TrieNode *getNode()
{
struct TrieNode* node=new TrieNode();
node->endofword=false;
for(int i=0;i<26;i++)
{
node->children[i]=NULL;
}
}
void insertNode(struct TrieNode *root,string s)
{
if(root==NULL)
{
root=getNode();
}
int l=s.length();
struct TrieNode* pcrawl=root;
for(int i=0;i<l;i++)
{
int index=s[i]-'a';
struct TrieNode* temp=pcrawl->children[index];
if(temp==NULL)
{
pcrawl->children[index]=getNode();
}
pcrawl=pcrawl->children[index];
}
pcrawl->endofword=true;
}
bool searchNode(struct TrieNode *root,string s)
{
if(root==NULL)
return false;
int l=s.length();
struct TrieNode* pcrawl=root;
for(int i=0;i<l;i++)
{
struct TrieNode* temp=pcrawl->children[s[i]-'a'];
if(temp==NULL)
{
return false;
}
pcrawl=pcrawl->children[s[i]-'a'];
}
return (pcrawl!=NULL&&pcrawl->endofword);
}
int main()
{
string keys[]={"the", "a", "there",
"answer", "any", "by",
"bye", "their" };
int n = sizeof(keys)/sizeof(keys[0]);
struct TrieNode *root=getNode();
for(int i=0;i<n;i++)
insertNode(root,keys[i]);
cout<<"Inserted\n";
searchNode(root,"any")?cout<<"Yes\n":cout<<"No\n";
searchNode(root,"b")?cout<<"Yes\n":cout<<"No\n";
return 0;
}