-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path11362 - Phone List.cpp
82 lines (61 loc) · 1.21 KB
/
11362 - Phone List.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
#include <stdio.h>
#include <cstddef>
struct trie {
bool is_number;
trie* next[10];
trie() {
is_number = false;
for(int i = 0; i < 10; i++)
next[i] = NULL;
}
};
trie* root;
bool insert(char s[]) {
trie* cursor = root;
for(int i = 0; s[i] != '\0'; i++) {
int number = s[i] - '0';
if(cursor->next[number] == NULL) {
cursor->next[number] = new trie;
cursor->next[number]->is_number = false;
for(int j = 0; j < 10; j++)
cursor->next[number]->next[j] = NULL;
}
cursor = cursor->next[number];
if(cursor->is_number)
return false;
}
for(int i = 0; i < 10; i++)
if(cursor->next[i] != NULL)
return false;
cursor->is_number = true;
return true;
}
void freeTrie(trie* cursor) {
if(cursor == NULL)
return;
for(int i = 0; i < 10; i++)
freeTrie(cursor->next[i]);
delete[] cursor;
}
int main() {
int t;
scanf("%i", &t);
while(t--) {
bool error = false;
root = new trie;
int n;
scanf("%i", &n);
for(int i = 0; i < n; i++) {
char s[11];
scanf("%s", s);
if(!insert(s))
error = true;
}
if(error)
puts("NO");
else
puts("YES");
freeTrie(root);
}
return 0;
}