搜索资源列表

  1. 线索化二叉树遍历算法

    0下载:
  2. 本程序的主要功能在于先序输入一个二叉树,用三种递归,三种非递归进行遍历,并进行中序线索化以及其遍历,后进行中序去线索化,再进行后序线索化以及其遍历,最后后序去线索花进行中序遍历.程序的基本目的是了解二叉树的基本操作.
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-09-20
    • 文件大小:2.74kb
    • 提供者:red_eyed_hare
  1. 二叉树的各种遍历方法—TreeVisit

    0下载:
  2. 包含二叉树先序、中序、后序的递归及非递归遍历,还有层次遍历、层次遍历从下到上、从左到右或者从右到左的遍历算法,并附加了测试代码
  3. 所属分类:Windows编程

    • 发布日期:2011-05-06
    • 文件大小:1.17mb
    • 提供者:little_ma
  1. 数据结构二叉树

    0下载:
  2. 数据结构二叉树的链式建立、先序、中序、后序、层次遍历的递归与非递归方法。
  3. 所属分类:其它资源

    • 发布日期:2012-04-20
    • 文件大小:95.72kb
    • 提供者:living_mf11
  1. 各种二叉树的数据结构

    1下载:
  2. 按先序扩展序列建立二叉树,先序、中序、后序遍历的递归算法,二叉树遍历的非递归算法,层次的非递归算法,求二叉树的深度。-sequence extended by the first sequence established binary tree, first sequence, sequence, after the preorder the recursive algorithm, the binary tree traversal
  3. 所属分类:Windows编程

    • 发布日期:2024-11-14
    • 文件大小:3kb
    • 提供者:贾德
  1. 二叉树jian

    0下载:
  2. 这个程序采用先序建立二叉树,并分别使用递归和非递归算法实现了对该二叉树的先中后序的遍历输出,并给出了一定的使用说明-this procedure was used in order to establish a binary tree respectively, and the use of recursive and non- recursive algorithm of this binary tree after the firs
  3. 所属分类:其他小程序

    • 发布日期:2024-11-14
    • 文件大小:182kb
    • 提供者:杨正朋
  1. datastructure

    0下载:
  2. 建立二叉树的链式存储结构,在此基础上完成下列算法: 1) 从键盘上输入二叉树的各个结点,建立二叉链表 2) 输出该二叉树; 3) 非递归的层次遍历序; 4) 非递归的先序遍历、中序遍历、后序遍历;-The establishment of the chain store binary tree structure, based on this algorithm to accomplish the following:
  3. 所属分类:其他小程序

    • 发布日期:2024-11-14
    • 文件大小:90kb
    • 提供者:王欣怡
  1. 1

    0下载:
  2. 二叉树的操作 基本要求: 1、用二叉链表作为存储结构,建立一棵二叉树。 2、分别按先序、中序和后序遍历二叉树,输出各遍历序列。 3、编写交换二叉树中所有结点左右孩子的非递归算法。-The basic requirements for the operation of binary tree: 1, used as a binary linked list storage structure, the establishm
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:2kb
    • 提供者:zhouhaoran
  1. TreeTraverse

    0下载:
  2. 二叉树的遍历操作,树结构用二叉链表存储,遍历时采用递归先序 中序 后序,层次遍历和非递归先序 中序 后序遍历-Binary tree traversal operations, binary tree structure list with storage, the use of recursive traversal sequence in the sequence after the first sequence, level an
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:206kb
    • 提供者:
  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
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:2kb
    • 提供者:赖毅
  1. bianli

    0下载:
  2. 二叉树的遍历,先序建立二叉树结构,包括前序、中序、后序遍历的递归和非递归遍历,求二叉树的深度。-Binary tree traversal, binary tree structure, the establishment of the first order, including the former order, in order, after traversing the recursive and non recursive t
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:247kb
    • 提供者:南风雅
  1. btree

    0下载:
  2. (1)二叉树的创建操作; (2)二叉树的销毁操作; (3)二叉树的先序遍历的递归算法; (4)二叉树的中序遍历的递归算法; (5)二叉树的后序遍历的递归算法; (6)二叉树的先序遍历的非递归算法; (7)二叉树的中序遍历的非递归算法; (8)二叉树的后序遍历的非递归算法; (9)二叉树的层次遍历算法; -(1) the creation of binary operations
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:201kb
    • 提供者:不悔
  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 fu
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:3kb
    • 提供者:赵宇
  1. Nonrecursive

    0下载:
  2. 二叉树的先序中序后序遍历的非递归函数,都写在一个项目中,仅供大家参考-Binary tree s first order after sequence traverse sequence
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:1.17mb
    • 提供者:姜昊
  1. Non-recursive-algorithm-binary

    0下载:
  2. 二叉树先序、中序、后序三种遍历的非递归算法-Non-recursive algorithm binary first order, in sequence, after three traversal
  3. 所属分类:软件工程

    • 发布日期:2024-11-14
    • 文件大小:3kb
    • 提供者:凯撒
  1. qweqwe

    0下载:
  2. .输入字符序列,建立二叉链表。 2.中序遍历二叉树:递归算法。 3.中序遍历二叉树:非递归算法。(最好也能实现先序,后序非递归算法) 4.求二叉树的高度 。 5.求二叉树的叶子个数。 6.编写一个主函数,调试上述算法。 -. Enter the character sequence, build binary list. 2. Binary tree traversal: recurs
  3. 所属分类:其他小程序

    • 发布日期:2024-11-14
    • 文件大小:2kb
    • 提供者:啊啊啊
  1. ER

    0下载:
  2. 二叉树的先序中序后序递归以及非递归遍历,二叉树的叶子节点等功能-Preorder in sequence after sequence of recursive and non-recursive traversal of a binary tree, the binary tree leaf nodes and other functions
  3. 所属分类:汇编语言

    • 发布日期:2024-11-14
    • 文件大小:1kb
    • 提供者:党菲
  1. BitTree

    0下载:
  2. 关于二叉树先序、中序、后序递归与非递归遍历的详细源代码,并附有详细的注解。适合学习数据结构二叉树的同学学习。-About Binary preorder, inorder, postorder recursive and non-recursive traversal detailed source code, together with detailed notes. Binary tree data structure for le
  3. 所属分类:软件工程

    • 发布日期:2024-11-14
    • 文件大小:2kb
    • 提供者:jin
  1. BinaryTree

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

    • 发布日期:2024-11-14
    • 文件大小:600kb
    • 提供者:rj501
  1. 二叉树的遍历

    0下载:
  2. 主要实现:创建二叉树、用先中后序遍历二叉树(中序,先序和后序遍历用非递归实现),并输出树高。(The main achievement is to create two branches tree, and use the first and middle traversal to traverse the two fork tree.)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:1kb
    • 提供者:晴栀菀歌°
  1. 二叉树_17281183_刘梦婷

    0下载:
  2. 按先序遍历的扩展序列建立二叉树的二叉链表存储结构,实现二叉树先序、中序、后序遍历的递归算法,实现二叉树中序遍历的非递归算法,实现二叉树层次遍历的非递归算法,求二叉树的结点个数,求二叉树的深度。(The binary list storage structure of binary tree is established according to the extended sequence of traversal in the firs
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-11-14
    • 文件大小:2.07mb
    • 提供者:lmt19990807
« 12 3 4 5 6 »

源码中国 www.ymcn.org