0_0_39167649_24565.cpp: In function 'void insert(char*)':
0_0_39167649_24565.cpp:39:17: error: 'strlen' was not declared in this scope
39 | int n = strlen(s);
| ^~~~~~
0_0_39167649_24565.cpp:14:1: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
13 | #include<cstdio>
+++ |+#include <cstring>
14 | #define up(i,a,b) for(int i=a;i<b;i++)
0_0_39167649_24565.cpp: In function 'bool search1(int)':
0_0_39167649_24565.cpp:54:17: error: 'strlen' was not declared in this scope
54 | int n = strlen(s[x]);
| ^~~~~~
0_0_39167649_24565.cpp:54:17: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
0_0_39167649_24565.cpp: In function 'int main()':
0_0_39167649_24565.cpp:81:25: error: 'memset' was not declared in this scope
81 | memset(tree, 0, sizeof(tree));
| ^~~~~~
0_0_39167649_24565.cpp:81:25: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
|