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

搜索资源列表

  1. (-1结束)求树高

    0下载:
  2. 用递归的方法的方法求二叉树的树高,注意输入的节点数据以-1结束。-use recursive methods for the binary tree height, pay attention to input data to the nodes -1 end.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2216
    • 提供者:楚天
  1. 重发求树高的程序

    0下载:
  2. 用递归的方法求二叉树的树高,使用时更加灵活,注意输入的数据以-1结束-using recursive method for binary tree height, use a more flexible, pay attention to input data to the end-1
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8196
    • 提供者:楚天
  1. PostOrderTraverse

    0下载:
  2. 后序遍历非递归二叉树源代码 很简洁,很简洁,很简洁-non - recursive binary tree source code is very simple, very simple, very simple
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1869
    • 提供者:陈珲
  1. 后序遍历的非递归算法

    0下载:
  2. 二叉树后序遍历的非递归算法-binary tree traversal sequence of non - recursive algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:8621
    • 提供者:宗锐
  1. 中序遍历的非递归算法

    0下载:
  2. 二叉树中序遍历的非递归算法-Binary preorder non - recursive algorithm
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:11856
    • 提供者:宗锐
  1. 先序非递归遍历

    0下载:
  2. 用非递归的方法先序遍历二叉树-non - recursive method preorder Binary Tree
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:6116
    • 提供者:姜园园
  1. 树的问题(生成)

    0下载:
  2. ADT BinaryTree 的实现及验证程序采用的主要数据结构:二叉树、栈、队算法思想:1、 先序建树、输出树、后序遍历用递归方法。性能分析:O( n )2、 先序遍历、中序遍历:性能分析:O( n )(1) 若遇到新节点非空则先入栈,然后访问其左子树。(2) 若为空则将栈顶结点出栈,访问其右子树。(3) 循环1、2直到栈为空且无节点可入栈。先序与中序的区别是:先序在入栈时访问节点,中序在出栈时访问节点。3、 层遍历:性能分析:O( n )(1) 根节点入队(2) 节点出队并访问(3) 若节点
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2256
    • 提供者:徐欣
  1. AVL树实现

    0下载:
  2. 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;
  3. 所属分类:其它

    • 发布日期:2010-04-03
    • 文件大小:24543
    • 提供者:doitfreely
  1. algorithm

    0下载:
  2. 非常实用的非递归二叉树遍历算法,可以解决许多生活中时机的问题-Very useful non-recursive binary tree traversal algorithm that can solve many problems in life time
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1452
    • 提供者:刘存
  1. Binary-tree

    0下载:
  2. 创建二叉树,先序中序后序递归二叉树,求叶子数目,求树高,左右子树交换。-Create a binary tree, in order of first-order recursive post-order binary tree, find the number of leaves, tree height requirements, exchange of left and right subtrees.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1811
    • 提供者:zhoulu
  1. erchashu

    0下载:
  2. 非递归-二叉树遍历,数据结构中遍历二叉树各子树的程序-Binary tree search
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:813
    • 提供者:李思萌
  1. BiLinkTree

    0下载:
  2. 二叉树的顺序存储表示结构定义,非递归的二叉链表创建和初始化等等(BiLinkTree Definition of sequential storage representation structure for two binary tree)
  3. 所属分类:数据结构

    • 发布日期:2018-01-01
    • 文件大小:4096
    • 提供者:伟哥wang
  1. BinaryTree

    0下载:
  2. 数据结构中二叉树的基础操作 掌握二叉树的链式存储结构及其相关操作的实现 掌握二叉树的先序、中序、后序的递归遍历算法 掌握二叉树的层次遍历非递归算法(Basic operation of two fork tree in data structure)
  3. 所属分类:数据结构

    • 发布日期:2018-01-03
    • 文件大小:614400
    • 提供者:rj501
  1. binary tree

    0下载:
  2. 二叉树的创建和非递归遍历,包括先序遍历,中序遍历,后序遍历(the creation and non-recursive traversal of binary tree)
  3. 所属分类:数据结构

    • 发布日期:2018-01-05
    • 文件大小:1024
    • 提供者:unstoppable
  1. 作业6_3

    0下载:
  2. 实现二叉树先序、中序、后序遍历,包含递归算法、非递归算法,以及求树的深度。(To achieve two tree preorder, inorder, post traversal .)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-05
    • 文件大小:196608
    • 提供者:hyungka
  1. 4

    0下载:
  2. 二叉树的基本功能,建立,遍历,递归与非递归(The basic functions of the two forked tree)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:5184512
    • 提供者:Hu_van
  1. Tree

    0下载:
  2. 练习创建二叉树,输出,利用递归算法等。先序后序中序便利二叉树。(Practice creating two forked trees, output, using recursive algorithms, and so on. The preorder in preorder is convenient for the two forked tree.)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-23
    • 文件大小:184320
    • 提供者:Curry1
  1. Binary Tree

    0下载:
  2. 1. 编写建立二叉树的二叉链表存储结构,并用广义表的形式显示; 2. 在二叉树的二叉链表存储基础上,实现二叉树的先序线索链表结构,并显示和存储二叉树的相应的线索链表; 3. 在二叉树的先序线索链表存储结构上,实现求任一个结点的先序的后继和前驱结点的算法; 4. 实现对先序线索二叉树的先序遍历的非递归算法,显示相应的遍历序列。(The establishment of preemptive clue binary tree and preorder traversal)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:倬倬
  1. tree3

    1下载:
  2. 集成了二叉树的基本需求,内含二叉树的循环链表实现的非递归层次遍历和运用链表求树的宽度。(It integrates the basic requirement of two branch tree, which includes the recursive link list implemented by two binary tree, and the width of tree is calculated by linked list.)
  3. 所属分类:文章/文档

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:limited
  1. Project1-2

    0下载:
  2. 利用递归算法实现二叉树的生成,求深度,求叶子数,中序遍历和后序遍历(Recursive algorithm is used to generate two binary tree, find depth, find leaf number, sequential traversal and post traversal.)
  3. 所属分类:Windows编程

    • 发布日期:2018-05-03
    • 文件大小:1157120
    • 提供者:Ico123
« 1 2 3 45 6 7 8 9 10 ... 35 »
搜珍网 www.dssz.com