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

搜索资源列表

  1. shujujiegou

    0下载:
  2. (1)熟悉树的各种表示方法和各种遍历方式,掌握有关算法的实现,了解树在计算机科学及其它工程技术中的应用。试设计一个程序,在计算机中构造该二叉树,并对它进行遍历。(2)给定一个图,设计一个程序,找出一条从某一顶点A到另一顶点B边数最少的一条路径。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:48479
    • 提供者:卢雪
  1. shuju7

    1下载:
  2. 灵活运用非递归的遍历算法实现二叉树的其它各种运算;掌握按层次顺序遍历二叉树的方法;熟练掌握在中序线索二叉树上找给定结点的指定顺序下的前驱和后继的方法。-Flexibility in the use of non-recursive binary tree traversal algorithm to achieve a variety of other operations master-level order according to the method of binary tree tr
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-26
    • 文件大小:5175
    • 提供者:bartok
  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. xiansuo

    0下载:
  2. 1 理解树结构的逻辑特性; 2 熟练掌握二叉树的逻辑结构特性及各种存储方法; 3 熟练掌握二插树的各种基本操作,尤其是三种遍历算法以及线索化算法。 4 进一步了解和掌握类的私有和公有成员函数的定义和使用以及类型的作用域 -A tree structure to understand the logic of identity two master binary logic of structural characteristics and various st
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:6850
    • 提供者:zhangge
  1. Tree

    0下载:
  2. 二叉树的基本操作,包括创建二叉树,各种递归,非递归遍历算法等,最后用树形方式在控制台下打印出二叉树。-basic bit tree
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:7553
    • 提供者:张健
  1. Binary-tree-traversal-of-recursion

    0下载:
  2. 【二叉树遍历的递归算法实现】 操作:根据提示输入相应数据实现各种功能 函数:菜单函数(menu) 前序建立二叉树(Crt_BinTree) 访问结点(Visit) 前序遍历(Pretraverse) 中序遍历(Intraverse) 后序遍历(Suctraverse) 删除树(Destory) 操作函数(perform)Pretraverse 主函数(main) 说明:结点数据初始为char型,但可在前面代码部分修改 成其他类型,
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:1611
    • 提供者:
  1. bitree

    0下载:
  2. 二叉树的各种操作,插入、删除、统计深度、各层宽度、结点度为0、1、2的个数、先序、中序、后序遍历的递归以及非递归算法、层序遍历等操作-Binary tree operation, insert, delete, statistical depth layers width operation
  3. 所属分类:Data structs

    • 发布日期:2017-12-03
    • 文件大小:2680
    • 提供者:周逸徉
  1. classical-algorithm-VCPP

    0下载:
  2. 常用的算法经典代码,包括快速排序,冒泡排序等各种排序方法,还有二叉树的前序、中序和后序遍历等-The classic algorithm code, including quick sort and bubble sort sorting methods, as well as the preamble of the binary tree, inorder and postorder traversal, etc.
  3. 所属分类:File Formats

    • 发布日期:2017-12-10
    • 文件大小:15500
    • 提供者:张双喜
  1. BinTree

    0下载:
  2. 二叉排序树,实现树的各种操作,包括计算深度,找最大值最小值,还有各种遍历的递归算法和非递归算法,以及查找查找树的前驱节点和后继节点-Binary sort tree, the tree to achieve various operations, including the calculation of depth, looking for maximum minimum, there are various recursive traversal algorithm and non-recur
  3. 所属分类:Console

    • 发布日期:2017-05-17
    • 文件大小:4535784
    • 提供者:小赵
  1. Btree

    0下载:
  2. 二叉树实现。实现了插入、删除、查找、求深度、各种遍历、判断完全二叉树等算法。-Binary Tree. Implements insert, delete, search, seeking depth, variety traversal algorithms to determine a complete binary tree.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3505
    • 提供者:马学威
  1. tree

    0下载:
  2. 二叉树是一种重要的非线性数据结构,直观地看,它是数据元素(在树中称为结点)按分支关系组织起来的结构,很象自然界中的树那样。树结构在客观世界中广泛存在,如人类社会的族谱和各种社会组织机构都可用树形象表示。树在计算机领域中也得到广泛应用,如在编译源程序如下时,可用树表示源源程序如下的语法结构。又如在数据库系统中,树型结构也是信息的重要组织形式之一。一切具有层次关系的问题都可用树来描述。满二叉树,完全二叉树,排序二叉树。   后序遍历是二叉树遍历的一种。后序遍历指在访问根结点、遍历左子树与遍历右子
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:794
    • 提供者:郭深夜
  1. shuju5

    0下载:
  2. 一、实验目的 1、进一步掌握指针变量、动态变量的含义。 2、掌握二叉树的结构特性,以及各种存储结构的特点和适用范围。 3、掌握用指针类型描述、访问和处理二叉树的运算。 二、实验内容 1、以二叉链表作存储结构,试编写前序、中序、后序遍历二叉树的算法。(First, the purpose of the experiment 1. Further grasp the meaning of the pointer variable and the dynamic variable.
  3. 所属分类:Windows编程

    • 发布日期:2018-01-09
    • 文件大小:11264
    • 提供者:天雷丶祭
« 1 2»
搜珍网 www.dssz.com