hihoCoder_1014

#include <iostream> #include <string> using namespace std; //字典樹節點定義 typedef struct Trie{ Trie* child[26]; int num; Trie(){ for(auto &a:child) a=NULL; num=1; } }T
本站公眾號
   歡迎關注本站公眾號,獲取更多信息