数据结构
文章平均质量分 70
angel_e
这个作者很懒,什么都没留下…
展开
-
数据结构 字典树模板
#include "stdio.h" // 字典树模板 hdu 1251#include "string.h"#include "stdlib.h"struct node{ struct node *next[26]; int num;};struct node *root;void insert(char *k){ int i; struct原创 2013-11-28 15:29:17 · 706 阅读 · 0 评论 -
排序小结--希尔排序--快排--堆排序--归并排序
数据结构刚上了排序,分享下一下午的劳动原创 2014-06-05 17:59:26 · 582 阅读 · 0 评论 -
nyoj 表达式求值--栈的应用
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=35题意原创 2014-06-03 14:26:03 · 573 阅读 · 0 评论