CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 遍历 二叉树 代码

搜索资源列表

  1. 二叉树的遍历.rar

    0下载:
  2. 数据结构中的平衡二叉树的代码
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:1.06kb
    • 提供者:
  1. tree3

    0下载:
  2. 二叉树的实现代码 前序遍历 中序遍历 后序遍历-achieve binary tree traversal sequence code before the order after preorder traversal
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3.06kb
    • 提供者:卢水柏
  1. erchashu

    0下载:
  2. 有关二叉树的原代码 主要是求叶子节点数目 和前 中 后 序遍历
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-18
    • 文件大小:1.31kb
    • 提供者:GXL
  1. BiTree

    0下载:
  2. 二叉树遍历的C语言代码,有前序遍历,中序遍历,后序遍历,比较有参考价值,对于初学者来说很有用!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8.51kb
    • 提供者:电信科学
  1. BST

    0下载:
  2. 代码实现了二叉树基本操作:实现二叉树的基本操作(包括前序、中序、后序遍历);从键盘读数,利用前面实现的基本操作,生成一棵二叉查找树;通过遍历二叉树,输出该二叉树的叶节点数;通过遍历二叉树,求二叉树的最大高度;利用队列,按层次输出二叉树各结点。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9.75kb
    • 提供者:李雅芳
  1. Huffman

    0下载:
  2. 使用huffman二叉树对文件进行压缩,代码中使用了自适应算法。不需要两次遍历源文件!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:34.51kb
    • 提供者:zhangbo
  1. inordervisit

    0下载:
  2. 该程序完成对二叉树的非递归中序遍历,因为其中涉及到二叉树的构造,而且使用类来构造,所以代码比较多。-completion of the process of non - recursive binary tree which preorder because it involved the construction of a binary tree, but the use of class structure, the code more.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9.44kb
    • 提供者:唐海浪
  1. preorder

    0下载:
  2. 该程序完成对二叉树的非递归的前序遍历,在三种遍历方法中,这种遍历最简单,所以,核心代码自然要少很多。-completion of the process of non - recursive binary tree of the former preorder, the three traverse method, which traverse the most simple, so natural to the core code is much less.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9.38kb
    • 提供者:唐海浪
  1. 二叉树的生成与遍历

    0下载:
  2. 建立并按前,中,后序方法遍历二叉树,本代码用的是非递归方法,递归方法的稍后给出-established as before, during and after the binary tree traversal sequence method, the code of non - recursive method, recursive method is later
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:909byte
    • 提供者:王伟
  1. structure

    2下载:
  2. 数据结构二叉树实现代码:功能如下: (1)创建二叉树 (2)递归算法先序遍历二叉树 (3)非递归算法中序遍历二叉树 (4)递归算法后序遍历二叉树 (5)求二叉树叶子结点个数 (6)按层次遍历二叉树 (7)求二叉树树深 -A binary tree data structure to achieve the code: Function is as follows: (1) Create a binary tree (2) recursive alg
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-24
    • 文件大小:185.44kb
    • 提供者:lqs010203
  1. BinaryTree

    0下载:
  2. 二叉树是另一种树形结构,它的特点是每个结点至多只有两棵子树,并且,二叉树的子树有左右之分,其次序不能任意颠倒。这个代码实现了二叉树的存储和遍历-err
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.57kb
    • 提供者:周爽
  1. BiTreeOrder

    0下载:
  2. 通过C++编写创建二叉树的代码,及实现二叉树的递归和非递归的先序、中序及后序遍历,和层次遍历。-The creation of a binary tree, recursive and non recursive traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:915.58kb
    • 提供者:mayinc
  1. BinaryTree

    0下载:
  2. 二叉树代码,可以实现二叉树的建立和二叉树递归遍历。-Binary code, can achieve the establishment and binary recursive binary tree traversal.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:562byte
    • 提供者:lin
  1. Level-traversing-a-binary-tree-

    0下载:
  2. 层次遍历二叉树(顺序结构) 注意:此代码仅演示层次遍历二叉树(顺序结构),并不考虑诸多细节, 感兴趣的可自行修改-Level traversing a binary tree (order structure) Note: This code only demonstrates the level traversing a binary tree (order structure), does not take into account many details,
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:1.23kb
    • 提供者:富宇
  1. bianlierchashu

    0下载:
  2. 入栈,出栈,非递归先序、后续、中序遍历二叉树。完整可实现的C语言代码-Stack, the stack, non-recursive preorder, follow-up, traversing Binary. C code can be achieved
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:2.51kb
    • 提供者:Vickie
  1. 前序遍历中序遍历创建二叉树

    0下载:
  2. 前序遍历中序遍历创建二叉树详细说明,含C++代码
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-11-29
    • 文件大小:55.5kb
    • 提供者:AndryLeon
  1. binary-tree

    0下载:
  2. 二叉树的基本算法代码,包括插入节点、删除节点、遍历二叉树等基本算法。-Binary basic algorithm code, including insert nodes, delete nodes, and other basic binary tree traversal algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:12.82kb
    • 提供者:
  1. Tree

    0下载:
  2. 数据结构对二叉树结构的C++代码实现,包含基本的建立二叉树,各种方式遍历二叉树,深度计算、结点个数计算-Data structure of binary tree structure of the c++ code, include the establishment of the basic binary tree, various ways to traverse the binary tree, depth calculation and node number calculation,
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:1.63kb
    • 提供者:小王子Galaxy
  1. 代码!!

    0下载:
  2. 啊!这是二叉树遍历的代码!再次请求管理员了!!!!!!!!!!(nothing to say ,just let me download things!!!)
  3. 所属分类:数据结构

    • 发布日期:2018-01-06
    • 文件大小:3kb
    • 提供者:RINDLER
  1. 8606-二叉树的构建及遍历操作

    0下载:
  2. 实现二叉树的遍历操作,属于数据结构基础算法,代码能够顺利运行,运行环境是ColdBlick。(The traversing operation of two forked tree belongs to the basic algorithm of data structure, the code can run smoothly, and the running environment is ColdBlick.)
  3. 所属分类:数据结构

    • 发布日期:2018-04-29
    • 文件大小:12kb
    • 提供者:蓉-
« 12 3 »
搜珍网 www.dssz.com