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

搜索资源列表

  1. tree

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

    • 发布日期:2008-10-13
    • 文件大小:20303
    • 提供者:蒋怡
  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. 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. a

    0下载:
  2. 按照前序非递归遍历二叉树,递归法将二叉树的左右子树互换-In accordance with the pre-order traversal non-recursive binary tree, binary tree recursive method will swap the left and right subtree
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1284
    • 提供者:周清林
  1. erchashu

    0下载:
  2. 实现二叉树的前序非递归遍历和比较两棵二叉树是否相似的算法。-The realization of the first order binary tree non-recursive binary tree traversal and comparison of two algorithms are similar.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1146
    • 提供者:张镇圳
  1. tree

    0下载:
  2. 数据结构习题之一,建立二叉树、先序非递归遍历、中序递归遍历、后序递归遍历,求叶节点数-Exercise one of the data structure, the establishment of binary tree, the first order traversal non-recursive, recursive in order traversal, postorder recursive traversal, and leaf nodes
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:2204
    • 提供者:susu
  1. tree

    0下载:
  2. 二叉树的建立,遍历,查找等一些操作,包含递归遍历和非递归遍历-tree apply
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:9719
    • 提供者:ww
  1. shu

    0下载:
  2. 首先,实现二叉树的创建和中序递归遍历算法,在此基础上,进一步实现二叉树的其它递归遍历算法和横向打印算法,最后再增加二叉树的非递归遍历算法、删除子树等算法。-First of all, the realization of the binary tree in order to create and recursive traversal algorithm, On this basis, the further the other recursive binary tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1491
    • 提供者:小也
  1. tree

    0下载:
  2. 二叉树的创建、递归遍历算法及其它基本操作的实现-The creation of a binary tree, recursive traversal algorithm and the realization of other basic operations
  3. 所属分类:software engineering

    • 发布日期:2017-04-04
    • 文件大小:4665
    • 提供者:房春英
  1. Binary_Tree_Traversal

    0下载:
  2. 哈尔滨工业大学,计算机科学与技术学院,数据结构实验二:二叉树的递归与非递归遍历-Harbin Institute of Technology, Computer Science and Technology, the data structure experiment II: the recursive and non recursive binary tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1340
    • 提供者:
  1. a

    0下载:
  2. 二叉树的先序递归非递归遍历,中序递归非递归遍历,后序递归非递归遍历,以及节点数-Binary tree preorder recursive traversal non-recursive, recursive sequence of non-recursive traversal, postorder recursive non-recursive traversal. As well as the nodes
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1899
    • 提供者:张秉洋
  1. binarytree

    1下载:
  2. 二叉树的递归遍历算法 “二叉链表”的类模板,数据结构和算法必备学习程序。-Recursive binary tree traversal algorithm " binary list," class templates, data structures and algorithms necessary learning process.
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:2276
    • 提供者:
  1. l

    0下载:
  2. 用二叉树实现递归遍历 希望能对大家派上用处-Achieved using a binary tree recursively traverse want to put to use for everyone
  3. 所属分类:software engineering

    • 发布日期:2017-03-29
    • 文件大小:644
    • 提供者:李航
  1. zhubianli

    0下载:
  2. 实现树的创建算法,创建一个至少包含3层,8个结点的二叉树,并对此树实现先中后序的递归遍历算法。输出三种遍历结果。再实现一个叶子结点查找算法,判断一个给定的数值是否在此树中作为叶子结点。-To achieve the creation of the tree algorithm, to create at least a three-layer, 8 nodes of a binary tree, and after this tree in order to achieve the first
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:32234
    • 提供者:张倩
  1. jingdiansuanf

    0下载:
  2. 二叉树的递归与非递归遍历(Java描述),高效实现Josephus算法,合并有序链表,基于队列实现的基数排序,栈.回溯.迷宫问题求解。5个算法的源程序。-Recursive and non recursive binary tree traversal (Java descr iption), efficient algorithms to achieve Josephus, merging sorted linked list, queue-based implementation of ra
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-27
    • 文件大小:81493
    • 提供者:liujin
  1. tree_two

    0下载:
  2. 二叉树操作实例,包括 1 建立二叉树 2 先序非递归遍历 3 中序递归遍历 4 后序递归遍历,求叶节点数 5 删除节点 6 结束程序运行 等操作。输入数字1~6,选择以上6种操作。-Examples of binary operations, including the establishment of a binary tree two first order non-recursive inorder traversal three recursive postorder traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1413
    • 提供者:董金勇
  1. Data_Structure_C

    1下载:
  2. 基本数据结构的C实现。包括: (1)线性顺序表 (2)单链表 (3)双向循环链表 (4)顺序栈 (5)链式队列 (6)循环队列 (7)二叉树的先序、中序、后序的递归遍历和非递归遍历。-C-realization of the basic data structure. Include: (1)Sq_List (2)Linked_List (3)Du_linkedlist (4)Sq_Stack (5)Linked_Queue (6)Cycl
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:680387
    • 提供者:马也凡
  1. digui

    0下载:
  2. 递归遍历二叉树简单程序,欢迎大家评价-Simple recursive binary tree traversal process are welcome to evaluate ~~~~~
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:543
    • 提供者:yuanyuan
  1. BinaryTree

    0下载:
  2. 二叉树的递归遍历,包括前中后三种遍历,并且采用先序输入-Recursive binary tree traversal
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:727
    • 提供者:yangchao
  1. tree

    0下载:
  2. 二叉树的遍历,用先序创建二叉树,再用先序、中序、后序递归遍历二叉树。-Binary tree traversal, with the first order to create a binary tree, then the first order, in order, the order of recursive binary tree traversal.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:231587
    • 提供者:小楠
« 1 2 3 4 5 6 78 9 10 11 12 ... 23 »
搜珍网 www.dssz.com