随笔分类 -  acm-字典树

hdu 1251(字典树)
摘要:题意:容易理解。。。思路:很简单的字典树,容易求解,但是也有坑爹的地方。代码实现:#include#include#includeusing namespace std;struct node{ struct node *next[26]; int num; node() {... 阅读全文

posted @ 2013-03-09 16:51 后端bug开发工程师 阅读(219) 评论(0) 推荐(0)

导航