今日头条,双生词,虽然没有过,还是写一下我的思路,请各位指教一下 第一种方法是用hash的方法做,过60%,后面就超时了 第二种方法是用trie树做,提交的时候没有考虑长度不相等的情况,考试结束才发现,不知道改过之后的代码能不能过 下面贴一下两种思路的代码。 #include "iostream" #include "string" #include "unordered_set" #include "algorithm" using namespace std; int main(int, char*[]) { int t, n; while(cin >> ...