摘要:
Trie树 Trie树可以支持快速存储和查找某个字符串在字典中是否出现过以及出现的次数 模板: #include <iostream> using namespace std; const int N = 100010; char str[N]; int n ; int son[N][26],cnt 阅读全文
摘要:
先看一个文档中的文字 A segmentation fault (often shortened to SIGSEGV) is a particular error condition that can occur during the operation of computer software. 阅读全文