CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - binary tree

搜索资源列表

  1. tt

    0下载:
  2. 本演示程序中,集合的元素为字符,集合大小为n<20,以字符串的形式输入,以“回车”为结束标志。程序读入一个字符串,统计该字符串中出现的字符及其次数,然后输出结果。运用一个二叉树来保存处理结果,字符串中的每个不同的字符用树描述,每个结点包含4 个域,格式为: 字符 该字符的出现次数 指向ASCII码小于该字符的左子树指针 指向ASCII码大于该字符的右子树指针 因此,程序的功能是依次从输入字符串中取出一个字符,把它们插入到树中 -The demonstra
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:93968
    • 提供者:蔡诚霄
  1. SellDB

    0下载:
  2. 直销系统实现二叉树算法,即对碰.能正确计算结果.-Direct system binary tree algorithm, that is touched. Calculations correctly.
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:561329
    • 提供者:将文
  1. bstree

    0下载:
  2. 二叉树 数据结构 忘了是第几个实验 好像是第六个 用b树做的-Binary tree data structure is the first of several forgotten experiment seems to be the sixth to do with b tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2798
    • 提供者:409
  1. huffman

    0下载:
  2. Huffman codes 􀂄 In telecommunication, how do we represent a set of messages, each with an access frequency, by a sequence of 0’s and 1’s? 􀂄 To minimize the transmission and decoding costs, we may use short strings to represe
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1579
    • 提供者:linru
  1. DataStructureTest

    0下载:
  2. 数据结构的一些基本的相关的试验,如二叉树的遍历,打印,如排序算法,检索算法,动态结构的静态实现实验-Data structures related to some basic tests, such as binary tree traversal, print, such as sorting algorithms, search algorithms, the dynamic structure of the realization of the experimental static
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:209516
    • 提供者:林小峰
  1. C_TREE

    0下载:
  2. 本例题将介绍一种建立二叉树的算法。同时介绍对“遍历算法”灵活应用:将二叉树中每个结点的左右子树进行交换。介绍求二叉树深度的算法。 二叉树的建立是一个递归方法,与二叉树先序遍历思路有点相似。数据的组织是先序遍历的顺序,但是当某结点的某孩子为空时以数据0来充当,也要输入。结合右图的二叉树,其数据的输入顺序应该是: 1 2 4 0 0 0 3 5 0 7 0 0 6 8 0 0 9 0 0。 若当前数据不为0,则申请一个结点存入当前数据。如果输入0表明是空(NULL),不分配结点。递归调用
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3345
    • 提供者:yyfy
  1. ercha

    0下载:
  2. 利用C语言写的二叉树应用关于表达式处理源代码-Using C language to write applications on the expression of the binary tree deal with source code
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1264
    • 提供者:Hanker
  1. three-sample-of-Data-Structure

    0下载:
  2. 数据结构,一共有三个文件,多项式相加,二叉树几种操作,数组正负排序-Data structure, a total of three documents, the sum of polynomials, binary tree several operations to sort the array of plus or minus
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:3308
    • 提供者:luo
  1. bianli

    0下载:
  2. 遍历二叉树 是指以一定的次序访问二叉树中的每个结点,并且每个结点仅被访问一次见图-Binary tree traversal refers to a certain tree in order to visit each node and each node has been visited only once see Figure
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:9244
    • 提供者:huaying
  1. binary_tree

    0下载:
  2. 二叉树三种遍历的非递归算法 给出二叉树先序、中序、后序三种遍历的非递归算法,此三个算法可视为标准算法,直接用于考研答题。-Binary Tree Traversal three non-recursive algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1153
    • 提供者:zhangli
  1. eee

    0下载:
  2. 一个c语言编写的求二叉树叶子结点个数的程序,开发环境为vc-A c language binary tree leaf node for the number of procedures, development environment for vc++
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2773
    • 提供者:林思哲
  1. Btree

    0下载:
  2. 实现二叉树基本操作,数据结构中的基本程序-Realize the basic operation of binary tree, data structure, the basic procedures
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1035
    • 提供者:songjinghua
  1. 5

    0下载:
  2. 5. 定义二叉树两个结点的最小距离为这两个结点的最近公共祖先分别到这两个结点的路径长度之和。请设计一种方法,找出给定二叉树中任意两个结点的最小距离,可以考虑以图形显示之-5. The definition of binary tree of two nodes for a minimum distance between two nodes, respectively, the most recent public ancestors to these two nodes and the pat
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-02
    • 文件大小:332108
    • 提供者:caiqiang
  1. Printbinarytreestructure

    0下载:
  2. 用来打印二叉树结构的程序。把打印二叉树形状给打印出来!-Binary tree structure used to print process. To print binary tree shape to print out!
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:6488
    • 提供者:一套
  1. bstree

    0下载:
  2. 这是数据结构中如何查找二叉树的c语言源码,可帮助初学者掌握相关方法-binary tree search
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1655
    • 提供者:linda
  1. pinghengerchashu

    0下载:
  2. 平衡二叉树是数据结构中一个非常重要的概念。它对二叉树的优化和提高查询效率有重要的作用,它是动态查找的一个非常重要方法,它在实际生产中有着广泛的应用。 - Balanced binary tree data structure is a very important concept. Its binary tree query optimization and improve efficiency has an important role, it is a dynamic search
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2105
    • 提供者:王艳峰
  1. adfwfer

    0下载:
  2. 数据结构的二叉树的叶子结点的求法 范围较好 功能良好 采用链试结构得以实现-Binary tree data structure of the leaf nodes for better well-functioning law-chain test structure used to realize
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1197
    • 提供者:张清
  1. LevelVisit

    0下载:
  2. 我们了解二叉树的前序,中序和后序遍历,那么设计一个程序实线二叉树的层次遍历-We understand that the first order binary tree, in sequence and post-order traversal, then design a program of line-level binary tree traversal
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-03
    • 文件大小:10043
    • 提供者:林大嘴
  1. binaryTree

    0下载:
  2. 二叉树的相关操作,详细给出了二叉树的算法及其实现。-binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:7432
    • 提供者:black_soil
  1. treesanditsusing

    0下载:
  2. 介绍树的相关用法和使用时应该注意的地方,重点突出二叉树的使用方法。-Introduce the relevant Usage tree and use the place when it should be noted, focused use of binary tree.
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:17841
    • 提供者:彼岸天堂
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com