-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtrie-insert-and-search.cpp
executable file
·64 lines (60 loc) · 1.35 KB
/
trie-insert-and-search.cpp
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
//http://practice.geeksforgeeks.org/problems/trie-insert-and-search/0
//trie-insert-and-search
#include<iostream>
#include<vector>
#include<string>
using namespace std;
struct node{
struct node *child[26];
bool isleaf;
};
node *getnode(){
node *pnode = new node();
for(int i=0;i<26;i++){
pnode->child[i] = NULL;
}
pnode->isleaf = false;
return pnode;
}
void insert(node *root,string s){
int len = s.length();
node *crawl = root;
for(int i=0;i<len;i++){
int index = s[i]-97;
if(!crawl->child[index]){
crawl->child[index]=getnode();
}
crawl=crawl->child[index];
}
crawl->isleaf = true;
}
int search(node* root,string s){
int len = s.length();
node *crawl = root;
for(int i=0;i<len;i++){
int index = s[i]-97;
if(!crawl->child[index]) return 0;
crawl = crawl->child[index];
}
if(crawl!=NULL && crawl->isleaf==true)return 1;
}
int main(){
int t,n;
cin>>t;
while(t--){
vector <string> vec;
string s;
string str;
cin>>n;
node *root = getnode();
for(int i=0;i<n;i++){
cin>>s;
vec.push_back(s);
insert(root,s);
}
cin>>str;
int res = search(root,str);
(res==1)?(cout<<"1\n"):(cout<<"0\n");
}
return 0;
}