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

搜索资源列表

  1. tree

    0下载:
  2. 输入字符序列,建立二叉链表。 前序、中序、后序遍历二叉树:递归算法。 前序、中序、后序遍历二叉树:非递归算法。 求二叉树的高度 。-Enter the character sequence, build binary list. Preorder, inorder, preorder after binary: recursive algorithm. Preorder, inorder, preorder after binary: non-recursive algor
  3. 所属分类:Console

    • 发布日期:2017-05-14
    • 文件大小:3228758
    • 提供者:qulei
  1. bintree-MFC

    0下载:
  2. 输入二叉树节点数,动态演示二叉树的中序遍历生成,MFC编写,有界面截图-Enter the two fork tree nodes, in order traversal generation, dynamic demonstration of two tree MFC prepared, there are screenshots
  3. 所属分类:Other windows programs

    • 发布日期:2016-12-25
    • 文件大小:125952
    • 提供者:谢乐乐
  1. Traverse

    0下载:
  2. 给出二叉树的前序和中序遍历,根据此求二叉树的后序遍历并输出。使用递归算法。-After seeking the binary tree traversal sequence.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:919
    • 提供者:白新
  1. BiTree

    0下载:
  2. 编程实现二叉树的a建立,b/c先序、中序、后序、层序遍历(递归和非递归方法),d二 叉树的高度、e繁茂度,f交换左右子树,g统计叶子节点的数目,h判断是否为完全二叉树, i按树的形态在屏幕上打印输出。 [基本要求] (1) 从文件中读入建树信息,树的节点数目不小于20个,树的高度不小于4。 (2) 建树信息采用两行英文字符表示,每个英文字符代表一个结点,第 1 行为树的 中序遍历结果,第 2 行为树的后序遍历结果。-Programming a binary tree
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:233412
    • 提供者:真真
  1. erchashu

    0下载:
  2. (1)输入字符序列,建立二叉链表。 (2)遍历二叉树输出。 (3)请设计一个算法,要求该算法把二叉树的叶子结点按从左到右的顺序连成一个单链表,表头指针为head。 二叉树按二叉链表方式存储,链接时用叶子结点的右指针域来存放单链表指针。请遍历该链表输出所有叶子结点,然后再先序遍历二叉树输出所有叶子结点,并对比两个输出结果,看是否相同。 (4)试写一算法判断某二叉树是否是完全二叉树。 (5)试写一算法判断某二叉树是否是二叉排序树。 (6)在主函数中设计一个简单的菜单,分别调试上
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1401
    • 提供者:顾欣
  1. Completed-BinaryTree

    0下载:
  2. 遍历(Traversal)沿着某条搜索路线,依次对树中每个结点均做一次且仅做一次访问二叉树的实现逻辑和流程-Traversal (Traversal) along a strip search route, turn on each node of the tree were done once and only once to access binary logic and processes to achieve
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-25
    • 文件大小:14271
    • 提供者:chen
  1. fml

    0下载:
  2. 已知二叉树的先序遍历结果,建立二叉树并输出其先序、中序、后序遍历结果-Build a binary tree and print the results of preorder, midorder and postorder traversals based on the known result of preorder traversal
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1711681
    • 提供者:常渊智
  1. similar

    0下载:
  2. 已知两棵二叉树的前序遍历结果,建立二叉树并判断其是否相似-Judge the similarity of two binary trees with the known results of their preorder traversals
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1710374
    • 提供者:常渊智
  1. tree

    0下载:
  2. 二叉树的建立、遍历、计算树的层数,简单易懂,合适初学者学习。-The establishment, computation tree traversal, the two fork tree layers, easy to read, suitable for beginners to learn.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:747
    • 提供者: u6D45 u5BFB
  1. non-recursive-of-binary-tree

    0下载:
  2. 二叉树的非递归遍历,运用栈的思想实现二叉树非递归遍历-Non-recursive binary tree traversal, using stacks of thinking non-recursive binary tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:359097
    • 提供者:liwei
  1. Problem32

    0下载:
  2. 实现二叉树的功能,根据先序遍历序列,中序遍历序列,得到一个二叉树,并实现后续遍历,输出后续遍历序列-Binary tree functions, according to preorder sequence preorder sequence, resulting in a binary tree, and to achieve a subsequent traversal, output subsequent traversal sequence
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:788
    • 提供者:李飞
  1. binaryTree

    0下载:
  2. 基于Visual C++的一个二叉树的程序,能实现从文件输入和数组两种方法建立二叉树,实现二叉树的前,中,后序遍历,广义表形式的输出,结点个数的统计,结点度的计算,树的高度计算,最大值的计算。-he establishment of the two fork tree the file input and an array of two methods, the realization of the two binary tree before, after the traversal, th
  3. 所属分类:CSharp

    • 发布日期:2017-05-07
    • 文件大小:1025732
    • 提供者:易新宇
  1. binary-tree

    1下载:
  2. 1)按照先序序列建立下图所示二叉树的二插链表树,结点元素类型取字符型,树的字符序列从键盘逐个输入。 2)在第1)步建立好的二叉链表树上实施前序、中序和后序递归遍历,并输出相应遍历序列。 3) 在第1) 步建立好的二叉链表树上实施前序遍历的叶子结点输出及其个数统计。 4)在第1)步建立好的二叉链表树上实施中序非递归遍历,并输出相应遍历序列(选做) 5)中序线索化第1)步所建立的二叉链表树,中序遍历所建立的线索二叉树,并输出遍历结果(选做) -1) the establishme
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-29
    • 文件大小:55779
    • 提供者:
  1. exp5_binarytree2

    1下载:
  2. 输入一个完全二叉树的层次遍历字符串,创建这个二叉树,输出前序中序后序遍历,结点数目,二叉树高度。-Enter a complete binary tree hierarchy traversal string to create the binary tree traversal sequence after sequence output in the preamble, the number of nodes, the binary tree height.
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:289980
    • 提供者:Zicheng Zhang
  1. Test4_19B

    0下载:
  2. 二叉树的前序遍历,中序遍历,后序遍历,实现了迭代其的使用-Pre-order binary tree traversal, preorder, after preorder realized iteration of its use
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1668
    • 提供者:pengbo
  1. 2010011016_e4_p1

    0下载:
  2. 编写五个函数,实现对二叉树的插入、复制、删除、非递归中序遍历和层序遍历操作,理解和掌握链式存储二叉树的性质和操作方法,同时进一步熟悉指针操作。-Write five functions to achieve the insertion of binary tree, copy, delete, and non-recursive preorder traversal sequence operations, understand and grasp the nature and operatio
  3. 所属分类:Data structs

    • 发布日期:2017-05-25
    • 文件大小:7842591
    • 提供者:林宇
  1. binary-tree

    0下载:
  2. 用C语言实现的二叉树的创建、添加节点、删除节点、递归和非递归遍历以及层次遍历-Using C language to create two fork tree, add node, delete node, recursive and non recursive traversal and hierarchical traversal
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2170567
    • 提供者:张方宇
  1. Arraytree-list

    0下载:
  2. 已知一棵二叉树的数组存储方式(即一个数组中以完全二叉树的对应方式放置了一棵二叉树) ,据此建立该二叉树的二叉链表,以某种遍历方式(前、中、后)进行结点的输出以检查建立结果。 -array to build tree
  3. 所属分类:Other systems

    • 发布日期:2017-05-13
    • 文件大小:2755211
    • 提供者:杨杰
  1. e

    2下载:
  2. 实现二叉树的基本操作:建立、遍历、计算深度、结点数、叶子数等。-Binary tree basic operations: the establishment, traverse, calculate the depth, the number of nodes, number of leaves and the like.
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:259821
    • 提供者:刘忠威
  1. binary-tree-

    0下载:
  2. 用C语言编写的遍历二叉树的算法,可以实现先序遍历、中序遍历、后序遍历的递归和非递归的算法。-Using C language traversal of the two fork tree algorithm, you can achieve the first order traversal, sequence traversal, the traversal of the recursive and non recursive algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:427844
    • 提供者:jiyameng
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com