ACM模板整理

字符串處理 字典樹Trie node /* 字典樹Trie */ struct Trie { // 最大節點數:模式串個數 * 最大串長度 static const int MAX_NODE = 10000 * 50 + 50; static const int CHAR_SET = 26; // 字符集的大小,也是Trie樹中每一個節點所連的最大邊數 static
相關文章
相關標籤/搜索