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

搜索资源列表

  1. bitree_my

    0下载:
  2. 用c语言实现任意树的创建并可以进行先序,中序,后序,按层遍历4种操作。-c language used arbitrary tree can be created and first sequence, the sequence after sequence, according to traverse four layer operation.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1046
    • 提供者:王文
  1. erchashu

    0下载:
  2. 演示遍历二叉树的过程,所以首先建立二叉树,并用图形显示出树的形状。建立的过程是采用前序便利的方法来创建,设计两种生成树的方式:一种是系统随机生成,另一种是人工输入。考虑到屏幕界面的有限性,限定二叉树不超过5层,最多26个字符,输入字符小数点“.”代表NULL。初始树为某种颜色的结点,三种情况的遍历采用填充另外一种醒目的颜色,来表示当前遍历的结点,同时显示该结点的访问序号。同时在遍历的过程中在遍历图形的下方显示出遍历序列。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2357
    • 提供者:溪传友
  1. bitree

    0下载:
  2. 一、需求分析 1、 根据输入,创建二叉树 2、 分别按先序、中序、后序和按层遍历二叉树并输出 3、 测试数据
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1048
    • 提供者:guojing
  1. lab03

    0下载:
  2. 建立一棵二叉树,用先序非递归方法遍历二叉树,1. 熟练掌握二叉树在二叉链表存储结构中的常用遍历方法:先序递归遍历、中序递归和非递归遍历、后序递归遍历。了解二叉树的按层遍历、先序非递归遍历及后序递归遍历。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9578
    • 提供者:helen
  1. binarytree

    0下载:
  2. 以二叉链表作为存储结构,定义二叉树类型 bitree ; 实现二叉树的以下运算: 建立 create( ) 输入二叉树的结点元素,建立二叉链表。 选择一种遍历方式(先序、中序、后序、层序)遍历这棵二叉树。 求二叉数的树深度。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2715
    • 提供者:candy930
  1. B-Tree

    0下载:
  2. 实现B-树的创建、插入、删除、遍历等功能,并以层序方式通过程序台显示输出。-B-tree to achieve the creation, insertion, deletion, traversal functions, and to sequence through the procedure showed that the output of Taiwan.
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:202717
    • 提供者:Carol
  1. TreeOperation

    0下载:
  2. 数据结构树的操作,包括输入二叉树用广义表表示的字符串,前序,中序,后序,按层遍历,查找树中元素,还有树的深度-Tree data structure operations, including input binary string representation of generalized table, pre-order, in order, the order, according to the layer through to find the tree of elements, as
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:242637
    • 提供者:maizhao
  1. erchashu

    0下载:
  2. 二叉树的各种遍历,用菜单形势实现的。前序中序后序层序-A variety of tree traversal, using the menu situation achievable. Preorder in sequence after sequence sequence
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2032
    • 提供者:张謇
  1. bitree

    0下载:
  2. 二叉树的四种形式的遍历,分别是先序,中序 后序,层遍历-Binary tree traversal of the four forms, namely the first order, in sequence after sequence, layer traversal
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:1656
    • 提供者:yuxin
  1. Queue

    0下载:
  2. 一个树的四种遍历:先序,后序,中序,层序-A tree traversal of the four: first order, after the order, in sequence, sequence
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:25792
    • 提供者:lang
  1. erchashu

    0下载:
  2. 本程序包括二叉树的创建,各种遍历方法(前序,中序,后序以及各层算法)。-This process includes the creation of a binary tree, various traversal methods (pre-order, middle order, post order, and layers of algorithm).
  3. 所属分类:Other Databases

    • 发布日期:2017-03-29
    • 文件大小:979
    • 提供者:崔云
  1. erchashubianli

    0下载:
  2. 编写采用二叉链表形式存储的二叉树的创建、先序、中序、后序和按层遍历的算法。将一棵二叉树的所有左右子树进行交换的算法。-Prepared using binary list stored in binary form of the creation, the first sequence, the sequence, after the order and by level traversal algorithms. Will be a left sub-tree of all binary ex
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-26
    • 文件大小:1692
    • 提供者:朱科圣
  1. zhubianli

    0下载:
  2. 实现树的创建算法,创建一个至少包含3层,8个结点的二叉树,并对此树实现先中后序的递归遍历算法。输出三种遍历结果。再实现一个叶子结点查找算法,判断一个给定的数值是否在此树中作为叶子结点。-To achieve the creation of the tree algorithm, to create at least a three-layer, 8 nodes of a binary tree, and after this tree in order to achieve the first
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:32234
    • 提供者:张倩
  1. erchashu

    0下载:
  2. 1 编写采用二叉链表形式存储的二叉树的创建、先序、中序、后序和按层遍历的算法。 2 编写将一棵二叉树的所有左右子树进行交换的算法。 提示:验证是否交换可以调用二叉树的遍历算法,比较输出结点序列。 3 编写一个主函数,将上面函数连在一起,构成一个完整的程序。 4 调试并运行实验源程序。 -Prepared using a binary list stored in binary form of the creation, the first sequence, the seq
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:1052
    • 提供者:王欣
  1. Cpp1

    0下载:
  2. 2 编写将一棵二叉树的所有左右子树进行交换的算法。 提示:验证是否交换可以调用二叉树的遍历算法,比较输出结点序列 1 编写采用二叉链表形式存储的二叉树的创建、先序、中序、后序和按层遍历的算法。 创建的二叉树: -2 the preparation of a binary tree will be all about the exchange of sub-tree algorithms. Tip: Verify that the exchange can be called
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:1269
    • 提供者:金伟
  1. erchashu

    0下载:
  2. 实现二叉树的非递归先序、中序、后序以及层序的遍历-Implementation of the computer science first order, in order, after the traversal sequence and the sequence
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2077
    • 提供者:明猩
  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. tree

    0下载:
  2. 关于二叉树的一些操作,包括建树,先序、后续、中序、层序非递归遍历等-Some operations on the binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2646
    • 提供者:jzx
  1. fwd3

    0下载:
  2. 利用C++语言,实现二叉树的遍历,前序中序后序,层序,递归非递归-Using C++ language, to achieve binary tree traversal, pre-order in the sequence after sequence, sequence, recursive non-recursive
  3. 所属分类:Data structs

    • 发布日期:2017-05-19
    • 文件大小:5457367
    • 提供者:李默
  1. lx

    0下载:
  2. 完成二叉树的基本算法,包括二叉树的生成(多种方式,先根、层次、双序列),遍历(前序、中序、层次等),求叶子节点数等-Completion of the basic binary tree algorithm, including the generation of binary tree (a variety of ways, first the root, level, two-sequence), traversal (pre-order, in sequence, level, etc.)
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1723
    • 提供者:luo
« 1 2 3 4 5 67 »
搜珍网 www.dssz.com