搜索资源列表
3二叉树
- 这是一个用可以解决二叉树先序,中序,后序排列的程序-This is a binary tree can be solved with first sequence, sequence after sequence with procedures
二叉树排序
- 实现二叉树的前序、中序、后序排列,以菜单形式出现-achieve binary tree of the former sequence, sequence after sequence arranged in the form of a menu
二叉树排序
- 实现二叉树的前序、中序、后序排列,以菜单形式出现-achieve binary tree of the former sequence, sequence after sequence arranged in the form of a menu
C源代码实例
- 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014
数据结构的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
WL40987330 C语言算法集
目录
第一部分 基础篇
001 第一个C程序
002 运行多个源文件
003 求整数之积
004 比较实数大小
005 字符的输出
006 显示变
3二叉树
- 这是一个用可以解决二叉树先序,中序,后序排列的程序-This is a binary tree can be solved with first sequence, sequence after sequence with procedures
二叉树排序
- 实现二叉树的前序、中序、后序排列,以菜单形式出现-achieve binary tree of the former sequence, sequence after sequence arranged in the form of a menu
二叉树排序
- 实现二叉树的前序、中序、后序排列,以菜单形式出现-achieve binary tree of the former sequence, sequence after sequence arranged in the form of a menu
030300726_2
- 用vc实现二叉树的各种排列。输入一颗二叉树后输出以前序后序中序排列的各节点和这棵树的高度-vc achieve binary tree with the various permutations. After the importation of a binary tree before output sequence after sequence with the order of the nodes and tree height
huffmancode111
- huffman完整源代码C语言实现,有本人超级详细解释(看不懂你去跳楼吧) 算法设计: 1、对给定的n个权值{W1,W2,W3,...,Wi,...,Wn}构成n棵二叉树的初始集合F={T1,T2,T3,...,Ti,...,Tn},其中每棵二叉树Ti中只有一个权值为Wi的根结点,它的左右子树均为空。(为方便在计算机上实现算法,一般还要求以Ti的权值Wi的升序排列。) 2、在F中选取两棵根结点权值最小的树作为新构造的二叉树的
dancitongji
- 对读入的某个文本文件input.txt中,拆出英文单词,输出一个按字典顺序排列的单词表,结果输出在文本文件output.txt中,每个单词一行,并在单词后输出该单词出现的个数,两个字段之间用逗号分隔。约定单词仅由英文字母组成,单词间由非英文字母分隔,相同单词只输出一个,大小写不区分。 利用二叉树实现-the right time to a text file input.txt, divestment English words,
lxshu
- 用汇编语言编写的二叉树排列算法,我自己的汇编课程设计之一-assembler language with the binary tree algorithm, a compilation of my own design one of the courses
DataManagerLast
- 纯C++语言编写的小型的学生管理系统 用二叉树实现学生相关属性包括姓名,年龄,房间号的保存,使显示按学号降序排列,并能够保存成文件.-pure C language prepared by the small student management system to achieve binary tree with the students relevant attributes including name, age, the p
hafuman
- 一 . 需求分析: 1) 输入形式和输入值范围: 输入形式是要压缩(或者要解压)的文件路径,输入范围是字符串,而且要是文件的路径。 2) 输出形式: 输出相应的编码压缩文件和解码原文件 3) 程序所能达到的功能: 利用哈夫曼对ASCII文件做不等长编码,达到压缩文件。利用哈夫曼树的遍历,达到解压文件的目的。程序的功能也就是实现压缩和解压ASCII类型文件的目的。 4)测试数据:(包括正确的输入
BinaryTreesorting
- 二叉树排序实现二叉树的前序、中序、后序排列,以菜单形式出现,代码简洁、易懂易用-Binary Tree Binary Tree Sort realize the first order, in sequence, after the sequence order to the menu form, the code is simple and easy to understand and use
AVL
- 中序线索化的二叉树 能够对二叉树先线索化然后再中序排列 并且输出-Clues in the sequence of the binary tree can be threaded binary tree and then arranged in sequence and the output
Binary tree
- 利用平衡二叉树,将输入数字排列成左小右大的二叉树,内附代码和文件说明(Using the balanced binary tree, the input number is arranged into a left small right large two fork tree, with the enclosing code and file descr iption)
二叉
- 二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好,占用系统内存较少;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查找前一子表,否则进一步查找后一子表。重复以上过程,直到找到满足条
02二叉排序树_BinarySortTree
- 二叉排列树的查找算法,《大话数据结构》里面的。(Lookup algorithm, balance two forked tree, big talk data structure inside.)