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

搜索资源列表

  1. 47751732huffman

    0下载:
  2. 文件的压缩与文件的解压缩,具体包含几个函数,哈弗曼编码的实现 哈弗曼树的建立-File compression and decompression of files, specifically contains several functions, Hafu Man coding Hafu Man tree to establish
  3. 所属分类:assembly language

    • 发布日期:2017-04-05
    • 文件大小:131509
    • 提供者:xiaoxiao
  1. huffman

    0下载:
  2. 实现哈夫曼树的程序,用于数据结构课程学习参考-Huffman tree program, the reference for the data structures course
  3. 所属分类:source in ebook

    • 发布日期:2017-04-08
    • 文件大小:620158
    • 提供者:秦川
  1. Line-tree-and-its-application

    0下载:
  2. 描述了关于线段树的一些原理及基本操作,后面引用两个例题详细介绍了离散化,扫描线,以及二维线段树-Describes the segment tree some of the principles and basic operation, followed by reference to the two examples described in detail the discretization, scan lines, as well as two-dimensional segment tr
  3. 所属分类:source in ebook

    • 发布日期:2017-03-29
    • 文件大小:110035
    • 提供者:orz
  1. shujuku

    0下载:
  2. 单链表,二叉树,复杂表达式,图的课程设计。-Singly linked lists, binary trees, curriculum design is
  3. 所属分类:assembly language

    • 发布日期:2017-05-17
    • 文件大小:4222089
    • 提供者:zhouyw
  1. BinarySearchTree

    0下载:
  2. 创建二叉排序树,含有创建,添加,删除,查找元素,销毁二叉树等功能,MFC可视化显示-This is a binary search tree demonstration, including create, delete, search elements in the tree. In addition, it is shown on MFC forms. welcome to download!!!
  3. 所属分类:source in ebook

    • 发布日期:2017-05-17
    • 文件大小:4148411
    • 提供者:abcdefg
  1. Tree

    0下载:
  2. 霍夫曼编码,最优霍夫曼树,从文件中读取并打印霍夫曼树-Huffman coding
  3. 所属分类:source in ebook

    • 发布日期:2017-11-13
    • 文件大小:1892
    • 提供者:丁海源
  1. WinRAR

    0下载:
  2. 一个表达式和一个二叉树之间,存在着自然的对应关系。写一个程序,实现基于二叉树的表示的算术表达式Expression的操作。 基本要求 1.ReadExpr(E) 以字符序列的形式输入语法正确的前缀表示式并够着表达式E。 2.WriteExpr(E) 用带括弧的中缀表达式输出表达式E。 3.Assign(V,c) 实现对变量V的赋值(V=c),变量的初值为0。 4.Value(E) 对算术表达式E求值。 5.CompoundExpr(P,E1,E2) 构造一个新的复合
  3. 所属分类:source in ebook

    • 发布日期:2017-11-12
    • 文件大小:6474
    • 提供者:wdtswdy
  1. main

    0下载:
  2. 实现了排序二叉树数据结构的插入查找删除等功能-Sorted binary tree insertion Find delete
  3. 所属分类:source in ebook

    • 发布日期:2017-11-18
    • 文件大小:2891
    • 提供者:张青
  1. Binary-tree-traversal

    0下载:
  2. 此源码是用来学习二叉树的各种遍历方法,相信正在学习数据结构的同学会用到。-This source is used to learn the binary tree traversal methods, I believe that students are learning data structures used.
  3. 所属分类:source in ebook

    • 发布日期:2017-11-08
    • 文件大小:296472
    • 提供者:毛峰峰
  1. hh

    0下载:
  2. 文本为一个用c语言编写用于产生一个二叉树的源码文本。以三元组形式输入任意二叉树(以大写字母表示结点),求以任意一选定结点为子树的深度。-Text for a c language is used to generate a binary tree of the source text. Enter any form of triples binary tree node (in capital letters), and demand in any one selected node subtr
  3. 所属分类:assembly language

    • 发布日期:2017-11-17
    • 文件大小:709
    • 提供者:欧阳杰
  1. hfm2

    0下载:
  2. 哈夫曼树的构建,源码实现,可用于排序等功能的实现-the implement of Huffman
  3. 所属分类:assembly language

    • 发布日期:2017-12-02
    • 文件大小:991
    • 提供者:hua
  1. xtrvw1

    0下载:
  2. delphi树控件,XTreeView 1.0-delphi tree control, XTreeView 1.0
  3. 所属分类:Delphi VCL

    • 发布日期:2017-12-01
    • 文件大小:4003
    • 提供者:汪洋
  1. tree

    0下载:
  2. 使用jsp实现的树状菜单,可以用于布局,可连接数据库-Achieved using jsp tree menu can be used in the layout, you can connect to the database
  3. 所属分类:source in ebook

    • 发布日期:2017-11-24
    • 文件大小:25600
    • 提供者:琳芝
  1. BiTree

    0下载:
  2. 二叉树的构造和遍历,其中包括前序、中序、后序、层序遍历-The construction of bitree
  3. 所属分类:source in ebook

    • 发布日期:2017-11-16
    • 文件大小:344019
    • 提供者:liuxin
  1. dan

    0下载:
  2. // 堆排序 // 初始调用BuildMaxHeap将a[1..size]变成最大堆 // 因为数组最大元素在a[1],则可以通过将a[1]与a[size]互换达到正确位置 // 现在新的根元素破坏了最大堆的性质,所以调用MaxHeapify调整, // 使a[1..size-1]成为最大堆,a[1]又是a[1..size-1]中的最大元素, // 将a[1]与a[size-1]互换达到正确位置。 // 反复调用Heapify,使整个数组成从小到大排序。 // 注意:
  3. 所属分类:MiddleWare

    • 发布日期:2017-11-20
    • 文件大小:1087
    • 提供者:李子健
  1. tree-three-order

    0下载:
  2. 本代码用队列的方式根据树的前序和中序生成树-create tree
  3. 所属分类:Compiler program

    • 发布日期:2017-11-30
    • 文件大小:1747
    • 提供者:之乎者也
  1. text2

    0下载:
  2. 实现了用树建立数值表达式,并求其值,随便输出它的广义表、前缀表达式和后缀表达式-To realize the tree is to develop a numerical expression, and for its value, literally output its generalized list, prefix and postfix expression expression
  3. 所属分类:Compiler program

    • 发布日期:2017-11-22
    • 文件大小:351460
    • 提供者:刘坤
  1. tree_analysis

    0下载:
  2. 这个一个用于树形分析的中间件代码工具.输入编码表后能自动生成对应的树状结构,便于分析.开发环境Visual C++ 6.-This middleware code for tree analysis tool. Input encoding table can automatically generate the corresponding tree for easy analysis. Development environment of Visual C++ 6.
  3. 所属分类:MiddleWare

    • 发布日期:2017-11-06
    • 文件大小:59443
    • 提供者:liyinying
  1. nn

    0下载:
  2. 二叉树的操作 二叉树的生成 二叉树的建立-The establishment of the operation binary tree binary tree generation binary tree
  3. 所属分类:assembly language

    • 发布日期:2017-12-10
    • 文件大小:937
    • 提供者:橘子爱
  1. 88

    0下载:
  2. 树与二叉树之间的转换。并输出转化后的二叉树和输入的书-tree translate
  3. 所属分类:source in ebook

    • 发布日期:2017-11-30
    • 文件大小:1777
    • 提供者:莉莉
« 1 2 ... 20 21 22 23 24 2526 27 28 29 30 ... 37 »
搜珍网 www.dssz.com