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

搜索资源列表

  1. tree

    0下载:
  2. 按先序遍历的扩展序列建立二叉树的存储结构 二叉树先序、中序、后序遍历的递归算法 二叉树中序遍历的非递归算法 二叉树层次遍历的非递归算法 求二叉树的深度(后序遍历) -By first traversing the expansion of the storage structure of binary sequences to establish the first order binary tree, in order, after traversing a binary
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:2064061
    • 提供者:申超波
  1. bitree-bianli

    0下载:
  2. 输入根据用户的输入信息,建立二叉树的二叉链表。 利用递归和非递归实现二叉树的中序遍历,利用队列实现二叉树的层次遍历。 -Enter the information based on user input, the establishment of binary binary tree list. Recursive and non recursive implementation of binary tree traversal, the use of queues to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:5714
    • 提供者:tang
  1. experiment

    0下载:
  2. C++语言用类实现二叉树递归非递归遍历搜索查找-C++ language implementation with a class of recursive binary tree search to find non-recursive traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:3355
    • 提供者:eva
  1. charushanchu

    0下载:
  2. 线性链表的创建和插入算法,利用递归方法进行二叉树中序遍历算法-Linear list creation and insertion algorithm, using recursive algorithm for binary tree traversal
  3. 所属分类:Data structs

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

    0下载:
  2. 详细介绍了二叉树三种遍历的非递归算法,有参考价值-Traversing binary tree described in detail the three non-recursive algorithm, a reference value
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:9914
    • 提供者:yinxiaoqing
  1. binary-tree

    0下载:
  2. 实现了二叉树递归先中后、以及非递归先中后序的遍历,运用模板是实现,可以很方便在以后使用-To realize the binomial tree recursion in first after the first, and recursion sequence of the traverse, after using the template is achieved, it is convenient to use in the future
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3002
    • 提供者:赵宇
  1. BiTree

    0下载:
  2. 二叉树 先序遍历 中序遍历 后续遍历 构建一棵二叉树 递归算法-Preorder traversal of binary tree traversal in order to build up a binary tree traversal recursive algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:246475
    • 提供者:范珊珊
  1. zuoye

    0下载:
  2. 二叉树的创建遍历,递归及非递归线索化等得实现-Create a binary tree traversal, recursive and non recursive clues and so have achieved
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2005
    • 提供者:sy
  1. erchashubianli

    0下载:
  2. 二叉树中序遍历递归算法演示,用图形描绘了是怎么用递归算法遍历二叉树,很形象直观。-Binary tree Recursion algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:7969
    • 提供者:胡琴
  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. 9

    1下载:
  2. 基于先序遍历算法创建二叉树先序遍历中序遍历后序遍历采用后序遍历求二叉树的深度、结点数及叶子数的递归算法-Create a Binary Tree in preorder traversal preorder traversal algorithm after preorder postorder traversal binary tree of depth, the number of nodes, and leaves the number of recursive algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-12-07
    • 文件大小:2482
    • 提供者:赫想
  1. shiyan5

    0下载:
  2. 以二叉链表表示二叉树,实现二叉树先序遍历、中序遍历、后序遍历的递归算法;直接利用栈的基本操作,实现二叉树先序遍历的非递归算法。-Binary list, binary tree, Binary Tree, Inorder traversal, recursive algorithm after preorder direct use of the basic operation of the stack, the non-recursive algorithm Binary Tree.
  3. 所属分类:CSharp

    • 发布日期:2017-12-01
    • 文件大小:1360
    • 提供者:陈序员
  1. The-tree

    0下载:
  2. (1)输入字符序列,建立二叉链表。 (2)中序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法。(最好也能实现先序,后序非递归算法) (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)建立中序线索二叉树,并实现中序遍历。 (8)借助队列实现二叉树的层次遍历。 (9)在主函数中设计一个简单的菜单,分别调试上述算法。-(1) Enter the character sequence of binary list. (2) in traversing
  3. 所属分类:Other systems

    • 发布日期:2017-11-14
    • 文件大小:7953
    • 提供者:BidyBai
  1. 1

    0下载:
  2. 1.基本训练 (1)输入字符序列,建立二叉链表。 (2)先序、中序、后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法(最好也能实现先序,后序非递归算法)。 (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)对于树中每一个元素值为x的结点,删去以它为根的子树,并释放相应的空间。 (8)借助队列实现二叉树的层次遍历。 (9)在主函数中设计一个简单的菜单,分别调试上述算法。 -Basic Training (1) Enter t
  3. 所属分类:CSharp

    • 发布日期:2017-11-18
    • 文件大小:2319
    • 提供者:血鸢
  1. erchashu

    0下载:
  2. 验证二叉树的二叉链表表示,实现CreateBiTree算法创建二叉树,实现二叉树的层次遍历算法,实现二叉树的先序、中序、后序递归遍历算法中的一种,编写主程序调用CreateBiTree创建二叉树,并调用二叉树的层次遍历、先(中、后)序遍历算法,测试不同的输入数据创建二叉树,预期输出并验证输出的结果。 -The binary list validation binary tree the preorder achieve CreateBiTree algorithms to create a
  3. 所属分类:Data structs

    • 发布日期:2017-11-30
    • 文件大小:1570
    • 提供者:dd
  1. Cpp1

    0下载:
  2. 非递归中序遍历二叉树:要求从键盘输入二叉树各结点的值,并使用二叉链表来存储二叉树;使用非递归算法遍历二叉树,在屏幕上打印出二叉树中序遍历序列。-Non-recursive traversal of binary tree: the input binary tree node value from the keyboard and use the binary tree to store binary tree non-recursive algorithm for binary tree t
  3. 所属分类:File Formats

    • 发布日期:2017-11-27
    • 文件大小:665
    • 提供者:Grape
  1. erchashu

    0下载:
  2. 非递归中序遍历二叉树:要求从键盘输入二叉树各结点的值,并使用二叉链表来存储二叉树;使用非递归算法遍历二叉树,在屏幕上打印出二叉树中序遍历序列。-Non-recursive traversal of binary tree: the input binary tree node value from the keyboard and use the binary tree to store binary tree non-recursive algorithm for binary tree t
  3. 所属分类:File Formats

    • 发布日期:2017-12-07
    • 文件大小:669
    • 提供者:Grape
  1. erchashu5876

    0下载:
  2. 非递归中序遍历二叉树:要求从键盘输入二叉树各结点的值,并使用二叉链表来存储二叉树;使用非递归算法遍历二叉树,在屏幕上打印出二叉树中序遍历序列。-Non-recursive traversal of binary tree: the input binary tree node value from the keyboard and use the binary tree to store binary tree non-recursive algorithm for binary tree t
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-07
    • 文件大小:673
    • 提供者:Grape
  1. shuheerchashu

    0下载:
  2. 以下问题要求统一在一个大程序里解决。 按先序遍历的扩展序列建立二叉树的存储结构 二叉树先序、中序、后序遍历的递归算法 二叉树中序遍历的非递归算法 二叉树层次遍历的非递归算法 求二叉树的深度(后序遍历) 建立树的存储结构 求树的深度-The following questions require a unified solution in a large program. Extension of the first-traversal sequence to esta
  3. 所属分类:CSharp

    • 发布日期:2017-12-08
    • 文件大小:179987
    • 提供者:lili
  1. binary-tree

    0下载:
  2. (1)输入字符序列,建立二叉链表。 (2)先序、中序、后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法。(最好也能实现先序、后序非递归算法) (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)借助队列实现二叉树的层次遍历。 (7)在主函数中设计一个简单的菜单,分别调试上述算法。-(1) Enter the character sequence to build binary list. (2) first order, in sequence, a
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:2525
    • 提供者:fei
« 1 2 3 4 56 7 8 9 10 ... 23 »
搜珍网 www.dssz.com