
编程练习
文章平均质量分 70
基皮producer
这个作者很懒,什么都没留下…
展开
-
hihocoder题库1000
hihocoder1000原创 2015-06-27 19:43:20 · 480 阅读 · 0 评论 -
hihocoder题库1014
今天做了下Trie树,虽然不难,但是还是费了一些功夫。 先上代码: #include #include #include //节点结构 typedef struct tNode{ char c; struct tNode *next[26]; long num; }tNode; //树结构 typedef struct tTree{ tNode *head; }tTree;原创 2015-10-10 23:19:45 · 895 阅读 · 0 评论