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

搜索资源列表

  1. 图形演示二叉树程序

    0下载:
  2. 用TC20 图形方式演示了二叉树的遍历程序,可以作为学生的教学用-TC20 graphic demonstration of a binary tree traversal procedures can be used as a teaching students
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2307
    • 提供者:康道之
  1. 文件树的实现

    0下载:
  2. 以递归搜索的方法实现对目录的遍历,然后用treeview现实整个目录树.-recursive search for the right way to achieve directory traversal, and then use the treeview reality the whole directory tree.
  3. 所属分类:TreeView控件

    • 发布日期:2008-10-13
    • 文件大小:345152
    • 提供者:林之焕
  1. AVL树实现

    0下载:
  2. 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;
  3. 所属分类:其它

    • 发布日期:2010-04-03
    • 文件大小:24543
    • 提供者:doitfreely
  1. 二叉树的前序中序后序遍历MFC

    1下载:
  2. 我这个主要实现的是创建二叉树,并实现前序中序后序的递归遍历。
  3. 所属分类:源码下载

    • 发布日期:2011-04-26
    • 文件大小:1885898
    • 提供者:luyanyan0904201
  1. 三态选择树实现终结者

    1下载:
  2. 在很多情况下,我们经常需要实现树的多态选择,如上图所示,当全部子节点选中的情况下,当前节点才被选中,当子节点部分选中时,当前节点处于第三态(如图示[湖北省]节点)当全部子节点未选中时,当前节点处于未选中的状态(如图示[江苏省]节点)。本文就介绍这种三态选择树的具体实现方法。 两种方法比较,本文介绍的方法实现简单,兼容原CTreeCtrl的全部操作,CheckBox也是采用控件本身的CheckBox,只是在状态显示时重画而已。因此,本方法可以实现表示三态的情况下同时显示节点ICON图标,另增加了对
  3. 所属分类:源码下载

  1. B-Tree.在MFC的SDI中动态产生二叉树并动态使用箭头进行遍历

    0下载:
  2. 在MFC的SDI中动态产生二叉树并动态使用箭头进行遍历,难得一见,B-Tree in SDI
  3. 所属分类:Windows编程

    • 发布日期:2017-05-13
    • 文件大小:3458376
    • 提供者:tr0j4n
  1. 二叉树的基本操作

    2下载:
  2. 二叉树的基本操作(1)在二叉链表上设计和实现下列二叉树运算的算法 ① 设计递归算法,实现:删除二叉树,求二叉树的高度,求二叉树中叶子结点数,复制二叉树,交换二叉树的左右子树。 ② 设计算法,按自上到下,自左向右的次序,即按层次遍历一棵二叉树。 ③ 设计main函数,测试上述每个运算。 -Binary Tree s basic operations (1) in the binary list on the design and realization of the fol
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-11-24
    • 文件大小:1765
    • 提供者:
  1. 遍历二叉树的3个递归算法

    1下载:
  2. 此程序给出了遍历二叉树的三个递归算法,并且利用了先序扩展序列建立二叉树,对于数据结构学习者有很大帮助-this procedure is a traversal of a binary tree three recursive algorithm, and use the first sequence extended sequence to establish a binary tree, the data structure for a great help learners
  3. 所属分类:界面编程

    • 发布日期:2012-12-24
    • 文件大小:16571
    • 提供者:赵麟
  1. 二叉树遍历

    0下载:
  2. 二叉树遍历(Traversal)是指沿着某条搜索路线,依次对树中每个结点均做一次且仅做一次访问。访问结点所做的操作依赖于具体的应用问 题。 遍历是二叉树上最重要的运算之一,是二叉树上进行其它运算之基础。(Two tree traversal (Traversal) refers to a search line, in turn, each node in the tree to do once, and only a visit. The operation of the access nod
  3. 所属分类:其他

    • 发布日期:2017-12-23
    • 文件大小:338944
    • 提供者:Somnus2018
  1. 二叉树遍历

    1下载:
  2. 简单的二叉树遍历,中序遍历,后序遍历,前序遍历(Simple two tree traversal)
  3. 所属分类:其他

    • 发布日期:2017-09-26
    • 文件大小:3072
    • 提供者:tomrb
  1. 新建 WinRAR ZIP 压缩文件

    0下载:
  2. 建立二叉树。有三个步骤,并且进行前序、中序、后序遍历。(Establish two trees, and preorder, middle, and post traversal)
  3. 所属分类:数据结构

    • 发布日期:2017-12-25
    • 文件大小:1024
    • 提供者:星海ok
  1. 4、二叉树的应用

    0下载:
  2. 在计算机科学中,二叉树是每个节点最多有两个子树的树结构。本程序能够实现二叉树的创建、先序、中序、后序、层次遍历、计算高度等功能。(In computer science, a two tree is a tree structure with two subtrees at each node. This program can realize the creation of two binary tree, first order, middle order, backward order,
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:324608
    • 提供者:飞洒吧year
  1. BTree

    0下载:
  2. 遍历二叉树(前序,中序,后序),包括二叉树的创建,此二叉树为链式二叉树,是手动创建的(Traversing the two fork tree (preorder, middle order, post order))
  3. 所属分类:数据结构

    • 发布日期:2017-12-31
    • 文件大小:2361344
    • 提供者:devil123
  1. bintree

    0下载:
  2. 主要为二叉树的遍历,涉及到前序遍历、中序遍历、后序遍历,以及左右孩子的交换后的遍历(内附c&c++操作手册)(It is mainly used for binary tree.)
  3. 所属分类:其他

    • 发布日期:2018-01-02
    • 文件大小:117760
    • 提供者:WilliamHGB
  1. 二叉树遍历

    0下载:
  2. 实现二叉树的前序,后序遍历 实现树的前序,后序遍历(The realization of the two fork tree, after the traversal Preorder tree traversal implementation.)
  3. 所属分类:数据结构

    • 发布日期:2018-01-04
    • 文件大小:2685952
    • 提供者:Jason9151
  1. 遍历二叉树

    0下载:
  2. 简单的二叉树通过递归算法遍历,先序遍历中序遍历和后序遍历。通过遍历对二叉树的结构有更深入的学习(Simple two tree traversal through recursive algorithm, first order traversal traversal and preorder traversal. Through traversal, the structure of the two fork tree has a more in-depth study)
  3. 所属分类:数据结构

    • 发布日期:2018-01-05
    • 文件大小:16059392
    • 提供者:沧海森林
  1. BST二叉树的基本操作

    0下载:
  2. BST二叉排序树的插入、查询、删除、遍历 (中序遍历 从小到大)(The basic operation of the BST two forked tree.Inserting, querying, deleting, traversing two forked sort trees.)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:92160
    • 提供者:续续
  1. 二叉树的四种遍历方式与层序创建

    1下载:
  2. 本例程实现对于二叉树的四种遍历方式,先序,中序,后序,层序四种遍历(This routine implements four traversing methods for two forked trees, the first order, the middle order, the rear order and the sequence of four ergodicity.)
  3. 所属分类:数据结构

    • 发布日期:2018-04-20
    • 文件大小:13312
    • 提供者:煜沉
  1. 哈夫曼树

    0下载:
  2. 主要实现:创建一颗哈夫曼树,并输出每个节点的哈夫曼编码。(The main achievement is to create a Huffman tree and output Huffman coding for each node.)
  3. 所属分类:数据结构

    • 发布日期:2018-05-01
    • 文件大小:1024
    • 提供者:晴栀菀歌°
  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. 所属分类:其他

    • 发布日期:2018-05-03
    • 文件大小:1024
    • 提供者:SuperLoser
« 1 2 34 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com