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

搜索资源列表

  1. dtcwt_toolbox4_3

    0下载:
  2. 国外编写的双树复小波的一个开发包,包括1维和2维的情况,文件中有说明。-The Dual-Tree Complex Wavelet prepared outside of a development package, including the one-dimensional and two-dimensional case, the document has made it clear.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-02
    • 文件大小:72049
    • 提供者:殷代强
  1. 2

    0下载:
  2. 二叉排序树的创建与使用 (时间限制为:1000毫秒) 描述: 二叉排序树的定义是:或者是一棵空树,或者是具有下列性质的二叉树:(1)若它的左子树不空,则左子树上所有的结点值均小于它的根结点的值;(2)若它的右子树不空,则右子树上所有结点的值均大于或等于它的根结点的值;(3)它的左右子树也分别为二叉排序树。现要求根据输入的元素值,构造一棵二叉排序树,并输出其先序遍历、中序遍历和后序遍历结果。 输入: 输入第一行为测试用例个数n,接下来为n个测试用例,每个测试用例占两
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:969
    • 提供者:zhoupenghua
  1. 15-4

    1下载:
  2. Example 编译:mpicc mst.c mst 运行:本实例中使用了5个处理器。 mpirun –np 5 mst 运行结果: Input the size of matrix:9 0 4 5 8 6 2 5 7 3 5 0 8 3 1 6 4 9 5 7 2 0 6 4 1 3 8 9 4 5 6 0 5 7 2 1 6 4 5 8 7 0 2 3 4 7 4 1 4 7 5 0 7 8 4 7 8 9 3 2 1 0 6 7 4 2
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:2161
    • 提供者:aaa
  1. tree

    0下载:
  2. 1.必须完成图的存储功能。图的输入可由命令行完成; 2.按遍历到的先后顺序依次输出G中各结点内容; 3.以文本形式输出生成树中各条边以及它们的权值。 -1. Must complete map of the storage function. Map the input command line can be completed 2. According to the order traversal order of the output G of the contents
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-14
    • 文件大小:3864
    • 提供者:张岩
  1. Binary_Tree

    2下载:
  2. 根据二叉树的抽象数据类型的定义,使用二叉链表实现一个二叉树。 二叉树的基本功能: 1、二叉树的建立 2、前序遍历二叉树 3、中序遍历二叉树 4、后序遍历二叉树 5、按层序遍历二叉树 6、求二叉树的深度 7、求指定结点到根的路径 8、二叉树的销毁 -According to the abstract data type binary definition, use two forks to implement a binary tree
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-17
    • 文件大小:577997
    • 提供者:tryqtyl
  1. 2010-10-19

    0下载:
  2. 1、ImageLIst Menu的使用 2、ImageList Tree的使用 3、MFC序列化的应用 4、CMsflexgrid的使用 -1, ImageLIst Menu use 2, ImageList Tree' s use of 3, MFC serialization applications 4, CMsflexgrid use
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-18
    • 文件大小:4850380
    • 提供者:zhouyongku
  1. tree

    1下载:
  2. 1 建立二叉树 1)通过输入树的嵌套括号表示序列 2)根据前序遍历序列和中序遍历序列建立二叉树 3)建立哈夫曼树 2. 对于1中1),2)所建立的树进行如下操作: 1)查找结点 2)前序遍历 3)中序遍历 3 对于建立的哈夫曼树进行编码 4 输出二叉树的形状-1 Create a binary 1) by entering the sequence of the tree of nested brackets 2) According to the preorder traversal sequ
  3. 所属分类:Data structs

    • 发布日期:2015-01-05
    • 文件大小:3072
    • 提供者:leik
  1. zizhi

    0下载:
  2. 8.2.3利用子指针数组的普通树后根遍历算法-8.2.3 the use of common sub-tree pointer array root traversal algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-02
    • 文件大小:747
    • 提供者:大无
  1. Graph-traversal-spanning-tree

    0下载:
  2. 1.显示图的邻接矩阵, 图的邻接表, 深度优先遍历, 广度优先遍历, 最小生成树PRIM算法, 最小生成树KRUSCAL算法,图的连通分量。 2.当用户选择的功能错误时,系统会输出相应的提示。 3.通过图操作的实现,把一些实际生活中的具体的事物抽象出来-Shown FIG s adjacency matrix, graph the adjlink, depth-first traversal, breadth first traverse, minimum spanning tree m
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1318
    • 提供者:江洋
  1. binary-tree

    0下载:
  2. 二叉树也是递归定义的,其结点有左右子树之分,逻辑上二叉树有五种基本形态: (1)空二叉树——(a); (2)只有一个根结点的二叉树——(b); (3)右子树为空的二叉树——(c); (4)左子树为空的二叉树——(d); (5)完全二叉树——(e)注意:尽管二叉树与树有许多相似之处,但二叉树不是树的特殊情形-Binary tree is recursively defined, and its sub-tree nodes are so divided, there are five basic
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1278276
    • 提供者:王晓飞
  1. binary-tree

    2下载:
  2. 1) 用先序递归过程建立二叉树(存储结构:二叉链表) 输入数据按先序遍历所得序列输入,当某节点左子树或右子树为空时,输入‘*’号,如输入abc**d**e** 2) 编写递归算法,计算二叉树中叶子结点的数目。 3)按凹入表方式输出该二叉树。 -1) The process established by the first order recursive binary tree (memory structure: binary list) input data sequen
  3. 所属分类:Data structs

    • 发布日期:2014-11-20
    • 文件大小:206848
    • 提供者:phoenix
  1. Tree

    0下载:
  2. 1.建立完全二叉树 2.先序非递归遍历二叉树函数 & 先序递归遍历二叉树验证 3.中序非递归遍历二叉树函数 & 中序递归遍历二叉树验证 4.后序非递归遍历二叉树函数 & 后序递归遍历二叉树验证 -1 to establish a fully binary tree 2 first order non-recursive binary tree traversal function preorder recursive traversal of binary tree &
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:215220
    • 提供者:许许
  1. binary-tree

    0下载:
  2. 1、参考P66建立二叉树的算法,建立图4-13(a)所示二叉树; 2、实现对该二叉树的先、中、后序遍历并输出遍历序列; 3、实现该二叉树的中序遍历非递归算法; 4、实现对该二叉树交换其左右子女的算法。 -1, reference P66 build binary tree algorithm, the establishment of Figure 4-13 (a) shows the binary tree 2, to achieve the binary
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1174
    • 提供者:梁小歪
  1. tree

    0下载:
  2. 1.可让用户选择你的测试例子,也可由用户随意输入待计算的表达式。 2.每单击一次就扩展一个结点。 3.能够显示计算过程。 即在界面中应用相应的按钮,每单击一次就计算一次。 -1. Allows the user to select your test case, the user may also be free to enter an expression to be calculated 2. Each click on the expansion of a no
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1259
    • 提供者:张真宇
  1. 2

    0下载:
  2. 设计一个哈夫曼编码、译码系统。对一个ASCII编码的文本文件中的字符进行哈夫曼编码,生成编码文件;反过来,可将编码文件译码还原为一个文本文件。 (1) 从文件中读入任意一篇英文短文(文件为ASCII编码,扩展名为txt); (2) 统计并输出不同字符在文章中出现的频率(空格、换行、标点等也按字符处理); (3) 根据字符频率构造哈夫曼树,并给出每个字符的哈夫曼编码; (4) 图形化输出哈夫曼树、哈夫曼编码; (5) 将文本文件利用哈夫曼树进行编码,存储成压缩文件(编码文件后缀
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2844298
    • 提供者:eric
  1. N-binary-tree-to-traverse

    0下载:
  2. 本程序用递归法遍历N叉树。可进行深度和广度遍历。 注: 按“/”键结束输入 如 2 1 3 / 6 / 9 / / / / 输入可得 深度遍历为21369,广度遍历为21369 最打节点个数为100个,且节点类型为字符型-This program using a recursive method to traverse N binary tree. For depth and the breadth traverse.
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:800
    • 提供者:
  1. 1

    0下载:
  2. 1)使用先序遍历序列构造算法,使用二叉链表,表示算术表达式2*3+6/3的标识符树; 2)求标识符树的先序、中序、后序序列,各存入数组中并显示结果; 3) 求树中叶子结点的个数 附加:3)使用后序序列求表达式的值(使用栈实现); -1) Use a preorder traversal sequence construction algorithm, using the linked list of binary, indicating that the arithmetic
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1102
    • 提供者:zhongren
  1. Binary-tree-VC

    0下载:
  2. 建立一棵二叉排序树并对它进行前序遍历。建立二叉树利用了插入算法,数据由用户输入;对二叉树前序遍历,利用非递归调用子程序,然后对二叉树(1)访问根结点;(2)遍历左子树;(3)遍历右子树。程序中要注意左右指针llink和rlink的使用。-Create a binary sort tree and pre-order traversal. The establishment of the binary tree to the use of the insertion algorithm, the
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:10183
    • 提供者:鲍慊
  1. adt-tree

    0下载:
  2. 二叉排序树:又称二叉查找树。 它或者是一棵空树;或者是具有下列性质的二叉树: (1)若左子树不空,则左子树上所有结点的值均小于它的根结点的值; (2)若右子树不空,则右子树上所有结点的值均大于它的根结点的值; (3)左、右子树也分别为二叉排序树;-Binary sort tree: also known as binary search tree. Or an empty tree or a binary tree with the following properties: (1) If t
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-31
    • 文件大小:909
    • 提供者:叶幸
  1. span

    0下载:
  2. Minimum Spanning Tree 1.The folder contains a text file (a.txt) you can use it as input or you can make your input in another file. 2.3.Run the program 4. The program wants a file address You can type an address 5. the out put will be the m
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:126543
    • 提供者:poorfatemi
« 1 2 3 45 6 7 8 9 10 ... 24 »
搜珍网 www.dssz.com