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

搜索资源列表

  1. 123

    0下载:
  2. 数据结构课程中,采用非递归算法 ,利用栈中序遍历二叉树。-Data structure course, the use of non-recursive algorithm using binary tree traversal stack.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1155
    • 提供者:
  1. 3

    0下载:
  2. 定义一个二叉树的类,并递归与非递归中序遍历二叉树-Define a binary tree class, and recursive and non-recursive traversal of binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2097
    • 提供者:kiki
  1. Bitree

    0下载:
  2. 二叉树三种遍历的非递归算法(背诵版) 本贴给出二叉树先序、中序、后序三种遍历的非递归算法,此三个算法可视为标准算法,直接用于考研答题。 -Binary Tree Traversal three non-recursive algorithm (recitation version) gives the paste bintree first order, in sequence, after the sequence of three non-recursive traversal al
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3749
    • 提供者:xaoyan
  1. shu

    0下载:
  2. 编写程序,首先建立如下图所示的带头结点的二叉链存储结构二叉树,然后把二叉树顺时针旋转90度后在屏幕上打印该二叉树,然后输出分别按照前序遍历(含递归与非递归两种方法),中序遍历,后序遍历以及层次遍历等方法遍历二叉树次序访问各结点的序列信息,并验证结果正确与否,并实现在该二叉树中查找某结点数据的方法。-Programming, first of all to establish a lead as follows node chain store binary tree structure, and
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:11187
    • 提供者:瑶瑶
  1. Bittree

    0下载:
  2. 二叉树所有简单的功能,包括遍历的递归和非递归算法,值得学习研究哦!-Binary tree of all the simple features, including traversal of recursive and non-recursive algorithm, it is worth study, oh!
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:8174
    • 提供者:海瑞
  1. binarytree

    0下载:
  2. 二叉树的操作,程序采用递归可进行树的遍历,求叶子节点的个数,交换左右子树等操作-Binary operation, the procedure can be carried out using recursive tree traversal, and the number of leaf nodes, exchange and other operations around subtree
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:1316
    • 提供者:尹今
  1. binarytree

    0下载:
  2. 二叉树的递归(先序,中序,后序)遍历,创建叶子结点数,二叉树深度-Recursive binary tree (first order, in sequence, after the order) traversal, create leaf nodes, tree depth
  3. 所属分类:Graph program

    • 发布日期:2017-04-25
    • 文件大小:10024
    • 提供者:yan li
  1. C_TREE

    0下载:
  2. 本例题将介绍一种建立二叉树的算法。同时介绍对“遍历算法”灵活应用:将二叉树中每个结点的左右子树进行交换。介绍求二叉树深度的算法。 二叉树的建立是一个递归方法,与二叉树先序遍历思路有点相似。数据的组织是先序遍历的顺序,但是当某结点的某孩子为空时以数据0来充当,也要输入。结合右图的二叉树,其数据的输入顺序应该是: 1 2 4 0 0 0 3 5 0 7 0 0 6 8 0 0 9 0 0。 若当前数据不为0,则申请一个结点存入当前数据。如果输入0表明是空(NULL),不分配结点。递归调用
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3345
    • 提供者:yyfy
  1. pre

    0下载:
  2. 以先序之方法遍历二叉树,以递归方法和非递归方法分别实现。-To preorder tree traversal methods to recursive methods and the realization of non-recursive method, respectively.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1767
    • 提供者:guo168
  1. binary_tree

    0下载:
  2. 二叉树三种遍历的非递归算法 给出二叉树先序、中序、后序三种遍历的非递归算法,此三个算法可视为标准算法,直接用于考研答题。-Binary Tree Traversal three non-recursive algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1153
    • 提供者:zhangli
  1. BinaryTreeData

    0下载:
  2. 用c语言实现了二叉树的数据定义,二叉树的构建、销毁,以及先序、中序、后序的递归算法及其源代码.-Implementation using c language definition of binary tree data, Binary Tree Construction, Destruction, and the first order, in sequence, after the sequence of the recursive algorithm and source code.
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:8157
    • 提供者:凌涵
  1. abinarytree

    0下载:
  2. 求二叉树树高,和把由前序和中序构建树,又后序遍历这两步放在同一个递归中完成的两个程序。-Binary tree for tree height, and put by the former sequence and in order to build a tree traversal sequence after another on these two steps completed by the middle of the same two recursive procedures.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:692
    • 提供者: 魏康康
  1. binaryTree

    0下载:
  2. 二叉树操作汇总,几乎设计所有算法,遍历递归、非递归、查找、求深度-Binary operation summary, almost all the design algorithm, recursive traversal non-recursive, search, and depth and so on
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1102
    • 提供者:李玲
  1. traverse

    0下载:
  2. 后续遍历非递归 数据结构中二叉树的遍历中 使用后续遍历非递归遍历二叉树-Follow-up data structure traversal non-recursive traversal of binary tree used in the follow-up traversal non-recursive binary tree traversal
  3. 所属分类:Console

    • 发布日期:2017-04-29
    • 文件大小:253707
    • 提供者:马文斌
  1. TreeTraversal

    0下载:
  2. 已知二叉树的先序、中序遍历的结果,构造出该二叉树,并用非递归的后序遍历算法遍历该二叉树-Sequence of the first known binary tree, traversal of the results of the binary tree structure, and after the use of non-recursive traversal of the binary tree traversal algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:257901
    • 提供者:浩峰
  1. Structure

    0下载:
  2. 数据结构是计算机学科的一门核心课程。数据结构课程的 任务是讨论现实世界中数据的各种逻辑结构、在计算机中的存 储结构以及实现各种操作的算法等问题。掌握如何组织数据、 如何存储数据和如何处理数据的基本方法,从而更好地进行软 件开发和应用。 典型数据结构包括表、堆栈、队列、数组、串、树、二叉 树、图、递归程序设计、排序和查找方法,介绍的典型存储结 构包括顺序存储结构、链式存储结构以及这两种典型存储结构 的结合。本速查器采用C语言作为算法描述语言,所有算法和 设计
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:157446
    • 提供者:袁和平
  1. binarytree

    0下载:
  2. 可以进行建立二叉树,递归先序、中序、后序遍历,非递归中序遍历等操作-build binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1369
    • 提供者:zhaoyue
  1. path

    0下载:
  2. 找出(二叉树中)从根结点到任一给定的结点的路径(非递归实现)-To find (in Binary Tree) from the root node to any given node of the path (non-recursive implementation)
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:611897
    • 提供者:weixiaoguoke
  1. datastruct

    0下载:
  2. 包含了二叉树查找法,递归对半查找法,以及非对半查找法。-This packet includes the programe with to fork lookup and recursion or non-recursion half-and-hanf lookup
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:5075
    • 提供者:niwenjuan
  1. tree_0000

    0下载:
  2. 二叉树有一个优雅的递归指针结构,所以他们是一个很好的学习方法递归指针算法。 - Binary trees have an elegant recursive pointer structure, so they are a good way to learn recursive pointer algorithms.
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:232629
    • 提供者:rachel
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 35 »
搜珍网 www.dssz.com