-
Notifications
You must be signed in to change notification settings - Fork 0
/
trie.cpp
133 lines (118 loc) · 2.82 KB
/
trie.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
//BISMILLAHIR RAHMANIR RAHEEM
//ALLAH IS WATCHING ME
// Shoeb Akibul Islam
// Dept of ICE, NSTU
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;
typedef long double dll;
typedef complex<double> point;
#define dua ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define i_love_u_huu dua long long t;cin >> t;while(t--)
#define ses "\n"
#define whp " "
#define mxi 200003
#define mp make_pair
#define pii pair<int, int>
#define pf printf
#define sf scanf
#define ff first
#define yes cout<<"YES"<<ses;
#define no cout<<"NO"<<ses;
#define sob(z) (z).begin(), (z).end()
#define ss second
#define pb push_back
#define rep0(i,a,b) for(int i=a; i<b; i++)
#define rep1(i,a,b) for(int i=a; i<=b; i++)
#define rep0in(i,a,b) for(int i=a-1; i>=b; i--)
#define rep1in(i,a,b) for(int i=a; i>b; i--)
#define repv(i,a) for(auto i=a.begin(); i!=a.end();++i)
#define INF 0x3f3f3f3f
#define CLR(a,b) memset(a,b,sizeof(a));
#define PI acos(-1)
/// ///
///
///
///
///
///
/// ///
struct node {
bool endmark;
node* next[26 + 1];
node()
{
endmark = false;
for (int i = 0; i < 26; i++)
next[i] = NULL;
}
} * root;
void insert(char* str, int len)
{
node* curr = root;
for (int i = 0; i < len; i++) {
int id = str[i] - 'a';
if (curr->next[id] == NULL)
curr->next[id] = new node();
curr = curr->next[id];
}
curr->endmark = true;
}
bool searchh(string& str, int len)
{
node* curr = root;
for (int i = 0; i < len; i++) {
int id = str[i] - 'a';
if (curr->next[id] == NULL)
return false;
curr = curr->next[id];
}
return curr->endmark;
}
void del(node* cur)
{
for (int i = 0; i < 26; i++)
if (cur->next[i])
del(cur->next[i]);
delete (cur);
}
void solve()
{
puts("ENTER NUMBER OF WORDS");
root = new node();
int num_word;
cin >> num_word;
for (int i = 1; i <= num_word; i++) {
char str[50];
scanf("%s", str);
insert(str, strlen(str));
}
puts("ENTER NUMBER OF QUERY");
int query;
cin >> query;
for (int i = 1; i <= query; i++) {
string str; cin >> str;
if (searchh(str, str.size()))
puts("FOUND");
else
puts("NOT FOUND");
}
del(root);
}
signed main()
{
//dua
//freopen("data.out","w",stdout);
//while(1)
//i_love_u_huu
solve();
return 0;
}
/// Alhamdulillah...