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

搜索资源列表

  1. tree

    0下载:
  2. 设T是一棵具有n个结点的二叉树,若给定其先序和中序遍历序列,并假定其其先序和中序遍历序列分别存放于数组PreOder[n-1]和InOrder[n-1]中,试设计构造该二叉树链式存储结构的递归算法。-T is a set with n nodes of binary tree, if a given sequence and the sequence of its first traversal sequences, and assumed its first order and the ord
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:273795
    • 提供者:林小芬
  1. 2chashu

    0下载:
  2. 生成如下二叉树,并用先序遍历输出结果 要求:用程序实现 说明:先生成如下所示的二叉树,然后先序遍历输出其结果:1243576 -Generate the following binary tree, and traversing the output with the first requirement: to achieve with the program Descr iption: President into the binary tree as shown below, a
  3. 所属分类:MacOS develop

    • 发布日期:2017-04-10
    • 文件大小:1217
    • 提供者:bob
  1. BTree

    0下载:
  2. 二叉树的创建和遍历,初学者使用,没写好,不要见笑。-Binary tree creation and traversal
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:193410
    • 提供者:李刚
  1. tautological

    0下载:
  2. 判断一个逻辑表达式是否是重言式,用户输入正确的逻辑表达式,计算机按照运算优先顺序生成二叉树,再用后序遍历得到逆波兰表达式,用逆波兰表达式来判断输入的表达式是否是重言式,用户也可以自己赋值来测试表达式的真假!-Determine whether a logical expression is a tautology, users enter the correct logical expression, the computer generates a binary tree in accord
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:3217
    • 提供者:小伏
  1. BST

    0下载:
  2. 用二叉查找树对动态查找表的设计与实现,基本操作包括:构造空表、销毁表、搜索指定关键字的元素、插入新元素、删除指定关键字的元素、遍历表中所有元素。-Binary search tree with the dynamic look-up table design and implementation of basic operations including: construction empty table, destroy the table, the search element of th
  3. 所属分类:Search Engine

    • 发布日期:2017-03-23
    • 文件大小:1849
    • 提供者:小伏
  1. bitree

    0下载:
  2. 二叉树的建立与遍历,以及求二叉树的叶子节点数,节点数,树的深度等。并用主函数调用各个子函数,功能非常全。建立二叉树的原理是先把二叉树看成完全二叉树,然后对各节点编号,利用二叉树的性质建立二叉树。-Establishment of the binary tree traversal, and the demand nodes in binary tree leaves, nodes, depth of the tree. With the main function calls each sub
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:1461
    • 提供者:李思明
  1. C7_TREE2

    0下载:
  2. 用C代码实现二叉树的三种遍历,其中用到图形库-C code implementation with three kinds of binary tree traversal, which use graphics library
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2048
    • 提供者:abc135790
  1. erchashu

    0下载:
  2. 二叉树的操作 1.先序创建二叉树 2.中序递归遍历二叉树 3.先序非递归遍历二叉树 4.中序非递归遍历二叉树 5.后序非递归遍历二叉树 6.层次遍历二叉树 7.求二叉树的高度 8.求二叉树叶子数 9.退出程序-Binary operation 1. The first order to create a binary tree 2. In order recursive binary tree traversal 3. Preorder traver
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1935463
    • 提供者:JIA
  1. Cpp1

    0下载:
  2. 实现二叉树的创建以及对其进行非递归前序遍历,路径输出等功能-To achieve the creation of a binary tree and its non-recursive preorder traversal of the path output function
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1202
    • 提供者:jyc
  1. shiyansi

    0下载:
  2. 采用llink-rlink方式存储二叉排序树,编写能够通过键盘输入建立二叉排序树,并在建立完立即在屏幕显示中序遍历结果的程序。-Stored using llink-rlink binary sort tree, the preparation of the keyboard input through the establishment of binary sort tree, and build complete immediately display the results of the
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:628
    • 提供者:陆斌
  1. BinaryTree

    0下载:
  2. 二叉树的递归遍历,包括前中后三种遍历,并且采用先序输入-Recursive binary tree traversal
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:727
    • 提供者:yangchao
  1. Bitree

    0下载:
  2. 二叉树的相关操作,建立,前序遍历,中序遍历,后序遍历-Binary tree-related operations, the establishment of preorder traversal, inorder traversal, after traversing
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1057
    • 提供者:zhangzhang
  1. BTree

    0下载:
  2. 计算机数据结构:二叉树的前序、中序、后序遍历算法综合版-Computer data structures: binary tree preorder, inorder, postorder traversal algorithm for Science
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:879593
    • 提供者:wang
  1. 1

    0下载:
  2. 二叉树的建立以及遍历环境win_tc 二叉树的建立以及遍历环境win_tc-The establishment of a binary tree and traverse the environment, and the establishment of a binary tree traversal win_tc environmental win_tc
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:682
    • 提供者:1
  1. erchashu

    0下载:
  2. 采用二叉链表作为存储结构,完成二叉树的建立、前序、中序、后序和按层遍历的操作,并求出二叉树的高度、所有叶子及树结点总数的算法,输出二叉树的广义表表示-List using the binary storage structures, the establishment of complete binary tree, the former order, in order, the order and by level traversal of the operation, and calcula
  3. 所属分类:source in ebook

    • 发布日期:2017-04-01
    • 文件大小:8750
    • 提供者:
  1. lab2

    0下载:
  2. 利用广义表建立的二叉树,将碱基作为他的节点,实现了以树形输出,并且交换了左右子树,利用非递归中序遍历和先序遍历。-The establishment of the binary tree using the generalized form, the base node as he realized to the output tree, and the exchange of left and right sub-tree in the use of non-recursive travers
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:245102
    • 提供者:张晓笛
  1. BinaryTree

    0下载:
  2. 二叉树的建立,非递归前中后序遍历,判断二叉树的相似,实现二叉树中左右子树的交换-The establishment of a binary tree, taken in the order of non-recursive traversal of binary tree similar to the judge, to achieve a binary tree in the exchange of left and right subtree
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-02
    • 文件大小:654910
    • 提供者:
  1. guangduyouxiansuanfa

    0下载:
  2. 用于遍历树目录的广度优先算法,用C#编写-Used to traverse the tree breadth-first algorithm, written using C#
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-05
    • 文件大小:20059
    • 提供者:樱花树下
  1. Inorder_BiTree

    0下载:
  2. 二叉树的构造及遍历 Construction and traverse binary tree先序遍历输入再中序遍历输出-Binary tree structure and traversing Construction and traverse binary tree in preorder traversal sequence and then traverse the input output
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:859
    • 提供者:小郭
  1. Application_of_binary_tree_traversal_algorithm

    0下载:
  2. 二叉树遍历算法的应用 作者:李锐歆 建立二叉树 统计叶子结点个数 求二叉树的树深-Application of binary tree traversal algorithm: Li Ruixin Statistics leaf nodes to establish the number of binary tree binary tree seeking deep
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1463
    • 提供者:李锐歆
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com