资源列表
huffman
- 基于Huffman编码的文件压缩设计:本次实验将文件中的字符作为结点,每个字符在文件中出现的频率作为结点的权值,采用Huffman算法构造Huffman树,将字符用尽可能短的二进制数位表示(频率越低,二进制数位越长),而不是用8位的ASCII码进行存储,已达到节省存储空间,压缩文件的目的。 程序设计的步骤如下: 1、统计需压缩文件中每个字符出现的频率; 2、将每个字符出现的频率作为叶子结点构建Huffman树,然后将树中结点引向其左孩子的分支标“0”,引向其右孩子的分支标“1”;
mowang
- 魔王问题:用栈实现魔王语言的解释。 1、本演示程序中,当有“(”出现,后面必须有“)”才符合魔王语言的规则。 2、程序执行的命令包括: 1)顺序栈的定义;2)构造空栈;3)元素进栈;4)元素出栈;5)大小写字母的转换;6)队列的定义;7)构造队列;8)元素进队;9)元素出队;10)结束。 3、测试数据 B(ehnxgz)B 翻译成人类语言:tsaedsaeezegexenehetsaedsae -Beelzebub question: Stack reali
Binary-Tree
- 二叉树通过字符串方式,能够创建相应的二叉树,而且可以递归实现。同样,对于任意的二叉树,可以生成对应的字符串。包括从指定字符串形式创建二叉树(包括空树和平凡树)、将二叉树按照指定的字符串形式输出、判断是否空树、 计算二叉树的结点总数、计算二叉树的叶子总数、计算二叉树的高度,其中空树和平凡树的高度分别为0和1、前序遍历输出二叉树,逗号分隔、中序遍历输出二叉树,逗号分隔、后序遍历输出二叉树,逗号分隔、将树清空等功能-By way of binary string, you can create t
Data-structures-algorithms-C
- 数据结构及算法的C语言实现。包含各类数据结构及其操作以及相关算法。-Data structure and algorithm C language. It contains various types of data structures and operations and related algorithms.
4BinToFloat
- 四个字节数据与float的相互转化。前后次序可调整。便于理解float数据格式实际存储为4个字节时再内存中的排序。也可以用在通讯中验证通讯数据的格式。 B1,B2,B3,B4 -》float(B+B+B+B)-Interconversion four bytes of data and float. Before and after the order is adjustable. Easy to understand format float data is actually stored
1
- ACM编程中,二叉排序树的实现和查找,仅供参考-ACM programming, binary sort tree implementations and look for reference
1
- 哈希表(开放定址法处理冲突)哈希表(链地址法处理冲突)-Hash Table (open addressing method to resolve disputes) hash table (link address method to resolve disputes)
1
- 搜索算法练习,包括:lake couting 、胜利大逃亡、变形课、棋盘问题-Search algorithm exercises, including: lake counting, The Great Escape, Transfiguration, board problem
jizhanfugai
- 描述的是通信系统蜂窝网络基站分布及各种空间点过程画图-It describes a communication system and a variety of cellular network base stations distributed spatial point process drawing
quanpailie
- 给定一串字符,列举出所有可能存在的排列方法。-Given a string of characters, the method may include all permutations exist.
zuiyoufenjie
- 对于给定的自然数n,将其分解为不同个数之和的形式,并使这些数的乘积最大。-For a given natural number n, it will be decomposed into the sum of the number of different forms, and make them the product of the maximum number.
qianxuzhongxu
- 根据一颗二叉树的前序和中序遍历结果,写出它的后序遍历结果。-According to the preamble and the results of a binary tree in preorder, write it after preorder results.