摘要:
大意:输入几个字符串,然后再输入几个字符串,看第一次输入的字符串有多少没有在后面的字符串中出现(后输入的字符串不一定出现在之前的字符串中) #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct Node { 阅读全文
摘要:
一改时间以后WA了,我就知道这题是考字典树,可惜代码怎么也不会敲了,郁闷。 #include <stdio.h>#include <string.h>#include <stdlib.h>typedef struct Node{ int flag; struct Node *next[26]; }N 阅读全文