Sonia's Program
文章平均质量分 81
fool_fool
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[Sonia] Implementation of Huffman Algorithm
首次使用自顶向下的方法进行编程,初步感受到了增量式编码与调试的优点,能独立解决编程过程中出现的各种Bug。 进步明显且迅速,特此表扬,(*^__^*) …… //File name: h_tree.h#ifndef _H_TREE_H_#define _H_TREE_H_#define MAX_NODES 100#define MAX_CODE_LEN 100#原创 2013-03-04 21:44:52 · 448 阅读 · 0 评论 -
[Sonia] Implementation of a Binary Tree Sort in C
[First Accepted Time: 2013/02/26]1. Basic binary tree structure definition//File name: binary_sort.h#ifndef _BINARY_SORT_#define _BINARY_SORT_#include #include struct binary_tree{原创 2013-02-27 14:51:51 · 391 阅读 · 0 评论
分享