字典树就是利用一个这样的树状结构,可以记录字符串有没有出现过 放个板子
int nxt[100000][26], cnt;
bool st[100000]; // 该结点结尾的字符串是否存在
void insert(string s, int l) // 插入字符串,l是字符串长度
{ int p 0;for (int i 0; i < …
复习:
以下类型都是 object
console.log(typeof new Object); console.log(typeof new Array()); console.log(typeof new Date()); console.log(typeof new RegExp()); console.log(typeof new String()); console.log(typeof new Number()); console.log(typeof…