摘要:
class Solution { #define maxn 10010 vector<int> edges[maxn]; public: vector<int> eventualSafeNodes(vector<vector<int>>& graph) { int i, j; int n = gra 阅读全文
摘要:
const int TRIE_WORD_COUNT = 400000; const int TRIE_WORD_LENGTH = 10; const int TRIE_NODE_CACHES = TRIE_WORD_COUNT * TRIE_WORD_LENGTH; // 字典 树类 class T 阅读全文