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

搜索资源列表

  1. 二叉树的各种遍历操作(非)递归

    0下载:
  2. 数据结构的基本应用,二叉树的遍历。适合初学者,比较简单。 -the basic data structure application binary tree traversal. For beginners, relatively simple.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2500
    • 提供者:阿水
  1. BiTNode

    0下载:
  2. BiTNode二叉树的递归和非递归遍历(包括中序\\先序\\后序)-BiTNode binary tree recursive and non - recursive traversal (including the sequence \\ first sequence \\ after Prologue)
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1590
    • 提供者:hd0178
  1. LastOrderTree

    0下载:
  2. 创建二叉树,并实现二叉树前序、中序递归遍历算法和二叉树的后序非递归遍历-create binary tree, and to achieve binary tree before the sequence, sequence recursive traversal of a binary tree algorithm and after non - recursive traversal sequence
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1012
    • 提供者:daimin
  1. bianli

    0下载:
  2. 数据结构中树的遍历,包括递归和非递归遍历 结构很完整-data structure traversal of the tree, including recursive and non - recursive structure is complete traversal
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2300
    • 提供者:廖涛
  1. B-tree

    0下载:
  2. 二元树的六种遍历方法,前中后递归非递归遍历,
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:119503
    • 提供者:walkbeef
  1. haffuman

    0下载:
  2. 构造哈夫曼树HT,动态分配数组存储哈夫曼树 ,-无栈非递归遍历哈夫曼树,求哈夫曼编码。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:4018
    • 提供者:dc
  1. trav

    0下载:
  2. 非递归遍历问题 分别写出以非递归方式按前序、中序和后序遍历二叉树的算法。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1428
    • 提供者:高溪辉
  1. abc

    0下载:
  2. 树与二叉树常用遍历方法:先序递归遍历、中序递归和非递归遍历、后序递归遍历。 求二叉树树的深度。 加深对“数据结构+算法=程序”的理解和认识,提高编写较复杂程序的能力。
  3. 所属分类:数据结构常用算法

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

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

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

    0下载:
  2. 二叉树的非递归遍历算法 可以直接上交,方便实用
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:20303
    • 提供者:蒋怡
  1. echsh

    0下载:
  2. 二叉树的各种遍历。递归和非递归遍历以及层次遍历。-the binary tree traversal. And recursive and non - recursive traversal level traverse.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3100
    • 提供者:cslf
  1. 二叉树的所有程序

    0下载:
  2. 二叉树的结点数,叶子数,深度,遍历,非递归的遍历等等!!!
  3. 所属分类:数值算法/人工智能

  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. BinaryTree Visit,all methods

    0下载:
  2. 二叉树的所有遍历算法,包括前序、中序、后序的递归与非递归算法,还有层次遍历从上至下、从下至上、从左到右、从右到左遍历方法。
  3. 所属分类:数据结构常用算法

    • 发布日期:2011-05-16
    • 文件大小:2143
    • 提供者:little_ma
  1. 5.6.1

    0下载:
  2. 1、二叉树的创建和遍历演示 1)从键盘输入二叉树的各结点值,按先序递归方式创建二叉树 2)分别实现先序、中序、后序递归遍历二叉树 3)输出二叉树的按层次遍历序列 4)输出二叉树的中序非递归遍历下的结点访问次序-1, binary tree traversal of the creation and demonstration of 1) from the keyboard input of the binary tree node value, according to firs
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1752
    • 提供者:赖毅
  1. Binary-tree-traversal-structure

    0下载:
  2. 二叉树非递归遍历的源代码 数据结构实验 C语言编程-Binary tree traversal non-recursive data structure of the source code in C programming experiments
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:16327
    • 提供者:格子
  1. TREE

    0下载:
  2. 实现二叉树非递归遍历,有利新手学习数据结构。-er cha shu fei di gui bian li
  3. 所属分类:Other systems

    • 发布日期:2017-11-17
    • 文件大小:15668
    • 提供者:姚阳
  1. non-recursive-of-binary-tree

    0下载:
  2. 二叉树的非递归遍历,运用栈的思想实现二叉树非递归遍历-Non-recursive binary tree traversal, using stacks of thinking non-recursive binary tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:359097
    • 提供者:liwei
  1. 树与二叉树

    0下载:
  2. 实验内容1按照先序序列构造一棵以二叉链表表示的二叉树T,然后进行非递归中序遍历,递归后续遍历和层序遍历。
  3. 所属分类:文档资料

    • 发布日期:2015-04-30
    • 文件大小:37376
    • 提供者:weizen
  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 23 4 5 6 7 8 9 10 ... 19 »
搜珍网 www.dssz.com