0_0_16705985_532.cpp:10:25: error: expected ';' at end of member declaration
struct Trie {int nxt[N],v}t[MAXN];
^
0_0_16705985_532.cpp: In function 'int main()':
0_0_16705985_532.cpp:45:18: error: 'get' was not declared in this scope
for (;get(str),str!='\0';){
^
0_0_16705985_532.cpp:46:19: error: cannot convert 'int*' to 'char*' for argument '1' to 'void insert(char*)'
insert(str);
^
0_0_16705985_532.cpp:49:19: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* gets(char*)'
for (;gets(str),str!='\0';){
^
0_0_16705985_532.cpp:50:32: error: cannot convert 'int*' to 'char*' for argument '1' to 'int query(char*)'
printf("%d\n",query(str));
^
|