摘要: 通道题意:给出1字母树,询问一字符串是否出现在该树中思路:直接搜索剪枝,有人点分治?写了几发都T了。。有人会了教我?代码:#include #include #include using namespace std;struct Edge { int v, nxt; Edge () { ... 阅读全文
posted @ 2015-09-26 21:31 mithrilhan 阅读(269) 评论(0) 推荐(0) 编辑