搜索资源列表
huffmancode111
- huffman完整源代码c语言实现,有本人超级详细解释(看不懂你去跳楼吧) 算法设计: 1、对给定的n个权值{W1,W2,W3,...,Wi,...,Wn}构成n棵二叉树的初始集合F={T1,T2,T3,...,Ti,...,Tn},其中每棵二叉树Ti中只有一个权值为Wi的根结点,它的左右子树均为空。(为方便在计算机上实现算法,一般还要求以Ti的权值Wi的升序排列。) 2、在F中选取两棵根结点权值最小的树作为新构造的二叉树的左右子树,新二叉树的根结点的权值为其左右子树的根结点的权值之
Huffman 算法的不同实现
- ---- Huffman 算法的不同实现 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,c语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用canonical
二叉树的实现
- 二叉树的虚拟实现 c语言版-binary tree virtual achieve c language version
数据结构的c++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 c++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
clanguagealgorithm
- c语言实现数据结构的小算法,包括数组、二叉树、排序等等 ,以及一些小例子-c language data structure to achieve a small algorithm, including the array, binary tree, sorting, etc., as well as some small example
BinaryTree
- 这是用c语言实现的二叉树的遍历算法,包括递归和非递归算法的实现。-This is to use c language implementation of the binary tree traversal algorithms, including recursive and non-recursive algorithm implementation.
datastruct-c
- 用c语言实现的数据结构,包括链表、图、二叉树、表等。-Implementation using c language data structures, including linked lists, maps, binary tree, and so on.
c
- 数据结构-线性表,二叉树的实现(c语言)-Data structure- the linear form, the realization of a binary tree (c language)
aaa
- 清华版 严蔚敏 数据结构实验(c语言)二叉树实现程序-Wei-Min Yan Tsinghua Science experiment data structure (c language) Binary Tree program
Huffmancoding
- 实现赫夫曼编码功能。利用数据结构典型算法,c语言构造最优二叉树实现赫夫曼编码-Implement Huffman encoding. Typical algorithms using data structures, c language binary tree structure to achieve optimal Huffman coding
lab-tree
- 数据结构c语言二叉树的实现 对初学者非常有帮助-Binary tree data structures c language very helpful for beginners
2010011179_e6
- 学生成绩管理系统 数据结构二叉树实现。c++编程语言-the manage of the student s grade.
balancebinarytree
- 数据结构:用c语言实现的平衡二叉树,请多多指教。-balanced binary tree by c
c
- c语言二叉树问题,详细的实现了二叉树的功能,并且还有录入文件的功能,删除文件内容的功能,通过单链表可以实现文件的录入,删除,查找,浏览,修改等功能.-c binary tree, the function of the detailed implementation of a red-black tree, and the function of the input file, delete the file content function, through singly linked lis
c
- c语言实现的数据结构中二叉树的前序遍历、中序遍历和后序遍历以及几种排序算法-c language data structure binary tree before preorder, preorder and postorder and several sorting algorithm
二叉树
- 二叉树的简单实现,使用了c语言地方萨芬撒但是(this is important file for put it on the web is aimportant thing dsaf fdsa)
binarySearchTree
- 这是基于c++语言的关于二叉查找树的删除、插入、查找的功能实现(Delete, insert, find of the binary tree)
SearchTree
- Mac OS,用Xcode下的c语言实现二叉查找树。(SearchTree in c language by Xcode on Mac Os.)
二叉树的四种遍历方式与层序创建
- 本例程实现对于二叉树的四种遍历方式,先序,中序,后序,层序四种遍历(This routine implements four traversing methods for two forked trees, the first order, the middle order, the rear order and the sequence of four ergodicity.)
bst二叉搜索树算法代码
- 一个直接可用的BST二叉搜索树的算法,基于c++语言实现。