搜索资源列表

  1. 二叉树的遍历.rar

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

    • 发布日期:2024-10-05
    • 文件大小:1083
    • 提供者:
  1. BiTree

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

    • 发布日期:2008-10-13
    • 文件大小:8714
    • 提供者:电信科学
  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
    • 文件大小:909
    • 提供者:王伟
  1. 二叉树的各种遍历方法—TreeVisit

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

    • 发布日期:2011-05-06
    • 文件大小:1227565
    • 提供者:little_ma
  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. 所属分类:数据结构常用算法

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:王伟
  1. tree3

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

    • 发布日期:2024-10-05
    • 文件大小:3072
    • 提供者:卢水柏
  1. 00129

    0下载:
  2. 一个遍历二叉树的C代码 是一个学生管理系统.-A binary tree traversal of the C code is a student management system.
  3. 所属分类:教育/学校应用

    • 发布日期:2024-10-05
    • 文件大小:228352
    • 提供者:smallfish
  1. 123456

    0下载:
  2. 一份数据结构的课程设计完整代码,说明,都十分齐全,希望对大家有用啊。题目是二叉树的遍历演示-A data structure of the curriculum design integrity of the code, descr iption, are very complete, in the hope that everyone ah useful. Binary Tree Traversal titled demo
  3. 所属分类:文档资料

    • 发布日期:2024-10-05
    • 文件大小:268288
    • 提供者:water
  1. erchashu

    0下载:
  2. 有关二叉树的原代码 主要是求叶子节点数目 和前 中 后 序遍历-The original code on the binary tree is mainly for the leaves and the former the number of nodes in the traversal sequence after
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:GXL
  1. BiTree

    0下载:
  2. 二叉树遍历的C语言代码,有前序遍历,中序遍历,后序遍历,比较有参考价值,对于初学者来说很有用!-Binary tree traversal of the C language code, a pre-order traversal, in order traversal, postorder traversal, comparison reference value, useful for beginners!
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-05
    • 文件大小:106496
    • 提供者:电信科学
  1. BST

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

    • 发布日期:2024-10-05
    • 文件大小:964608
    • 提供者:李雅芳
  1. BinTreeExp

    0下载:
  2. 二叉树的创建、前序递归遍历、中序递归遍历、后序递归遍历、层次遍历、前序非递归遍历、中序非递归遍历、后序非递归遍历算法。里面包含了顺序栈和队列的实现代码。-Binary tree creation, pre-order recursive traversal, recursive in order traversal, postorder recursive traversal, traverse the level, pre-order
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-10-05
    • 文件大小:211968
    • 提供者:LCC
  1. BiTreeOrder

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

    • 发布日期:2024-10-05
    • 文件大小:937984
    • 提供者:mayinc
  1. structure

    0下载:
  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
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-05
    • 文件大小:189440
    • 提供者:lqs010203
  1. BinaryTree

    0下载:
  2. 二叉树前序中序后序遍历遍历代码,使用c++编写(Two fork tree preorder, in order, after traversal traversal code, using c++ write)
  3. 所属分类:其他小程序

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:xxyy1994
  1. 代码!!

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

    • 发布日期:2024-10-05
    • 文件大小:3072
    • 提供者:RINDLER
  1. 数据结构

    0下载:
  2. 学习数据结构一个比较基础的代码,实现遍历二叉树,插入合并操作。(Learn a relatively basic code of the data structure to traverse the two forked tree and insert the merge operation.)
  3. 所属分类:文档资料

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:lixuhao21
  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. 所属分类:数据结构常用算法

    • 发布日期:2024-10-05
    • 文件大小:12288
    • 提供者:蓉-
  1. trees

    0下载:
  2. 这是一个遍历二叉树的python代码,有兴趣的朋友可以下载来看看(This is the python source code used to describe trees. It can be combined with your actual needs.)
  3. 所属分类:其他小程序

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:chentrer
  1. 二叉树遍历操作

    0下载:
  2. 本代码采用c/c++语言,描述了二叉树的先中后序遍历及深度(This code uses c/c++ language to describe the first and middle traversal traversal and depth of two binary tree.)
  3. 所属分类:其他小程序

    • 发布日期:2024-10-05
    • 文件大小:1024
    • 提供者:SuperLoser
« 12 3 4 5 »

源码中国 www.ymcn.org