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

搜索资源列表

  1. hashu[1]

    0下载:
  2. 以前序建立一颗二叉树,并以中序、后序遍历,求深度和叶子节点-Before the establishment of a binary sequence, and in order, postorder traversal, seeking depth and leaf nodes
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:943
    • 提供者:孙亚云
  1. tree

    0下载:
  2. 二叉树的各种运算的实现,文本文档,包括求深度、结点个数、遍历以及查找结点等。-Binary tree implementation of the various operations, including seeking depth, the number of nodes, traverse and to find other nodes.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1675
    • 提供者:weili
  1. BiTree

    0下载:
  2. 二叉树的各种应用,包括求深度、替换、返回某个节点、插入、删除、遍历等-Binary tree of a variety of applications, including seeking depth, replace, return to a node, insert, delete, traverse, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:3498
    • 提供者:zry
  1. binaryTree

    0下载:
  2. 完成以下菜单项功能,要求执行完一个功能后自动输出二叉链表的广义表形式或凹入形式: 按带空子树的前序序列建树; 输出前序、中序、后序遍历序列(递归算法); 输出结点个数、叶子结点个数; 输出二叉树的深度; 按凹入格式输出二叉树; 按广义表格式输出二叉树; 查询前序遍历序列的第i个结点; 一般二叉树的查找:给定值是否在二叉树中; 建立二叉排序树; 二叉排序树的查找。 使用二叉排序树完成排序。-Complete the following menu item
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:1015072
    • 提供者:麦培鹏
  1. shujujiegoua

    0下载:
  2. 数据结构里面基本所有的知识点的代码为全班同学的作业如约瑟夫问题、哈弗曼编码、层次二叉树、深度广度遍历-Data structure inside knowledge of the basic points of all the code for the whole class of operations such as Josephus problem, Ha Fuman coding, hierarchical binary tree, depth, breadth traversal
  3. 所属分类:Data structs

    • 发布日期:2017-05-18
    • 文件大小:4884983
    • 提供者:方式
  1. huisufa

    0下载:
  2. 回溯法是一个既带有系统性又带有跳跃性的搜索算法,它在问题的解空间树中按深度优先策略,从根节点出发搜索解空间树。回溯法求问题的所有解时,要回溯到根,且根节点的所有子树都已被搜索遍才结束。回溯法求问题的一个解时,只要搜索到问题的一个解就可以结束。使用回溯法解决n皇后问题时,用完全二叉树表示解空间,用n元组x[1:n]表示,其中x[i]表示皇后i放在棋盘的第i行的第x[i]列,根据规则任何2个皇后不放在同一行或同一列或同一斜线上,则可以得到等式关系,由此可以进行解决问题。-Backtracking
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:558
    • 提供者:ss
  1. erchashu

    0下载:
  2. 本文利用C语言实现了简单的二叉树,每个结点只保存一个整数,并且,由于非常简单,树的根结点是确定的,而不是输入的。确定根结点以后,用户输入的每一个数都被insert到树中(-999表示停止),利用深度优先的方法。建立好二 叉 树以后,分别利用深度优先(DFS)和广度优先(BFS)进行了遍历, -In this paper, a simple C language binary tree, each node only stores an integer, and, due to the very
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2529
    • 提供者:wangmingmin
  1. 20110529

    0下载:
  2. 二叉树的基本功能,包括先序、中序、后续遍历,二叉树的深度,长度等。-The basic functions of a binary tree, including the first order, in order, follow-up traversal, binary tree of depth, length.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:521
    • 提供者:liuxusuifeng
  1. Btree

    0下载:
  2. 二叉树的插入删除先后中序遍历及求宽度和深度-Binary tree insertion and deletion has in traversing the width and depth requirements
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-05
    • 文件大小:351625
    • 提供者:wk
  1. bin_tree

    0下载:
  2. 二叉树的前序,中序,后序遍历,和求其的深度小程序-Pre-order binary tree, in order, the order of traversal, and find the depth of its small program
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:692
    • 提供者:tgh
  1. tree

    0下载:
  2. 数据结构中二叉树的基本操作,主要有建立、遍历、求深度等操作-The data structure of the basic operation of the binary tree, the main building, traverse, be in depth in operation
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:914
    • 提供者:朴颜
  1. Lying-data-structure9

    0下载:
  2.  《大话数据结构》主要内容包含:数据结构介绍、算法推导大O阶的方法;顺序结构与链式结构差异、栈与队列的应用;串的朴素模式匹配、KMP模式匹配算法;二叉树前中后序遍历、赫夫曼树及应用;图的深度、广度遍历;最小生成树两种算法、最短路径两种算法;拓扑排序与关键路径算法;折半查找、插值查找、斐波那契查找等静态查找;稠密索引、分块索引、倒排索引等索引技术;冒泡、选择、插入等简单排序;希尔、堆、归并、快速等改进排序-" Westward the data structure," the m
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1531772
    • 提供者:陈雨
  1. BiTree

    0下载:
  2. 实现的功能包括创建二叉树,按层遍历、递归遍历,统计度为0、1、2的节点数,求深度,判断是否是完全二叉树,求节点的父节点,交换左右子树,文件读写-create BiTree,traverse bitree,node s ancestor, exchange left and right childtree
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:4117
    • 提供者:
  1. erchashu

    0下载:
  2. 二叉树的一些简单应用,如输出二叉树,求深度,高度等-Some simple binary applications, such as the output binary, seeking depth, height, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1464
    • 提供者:hanmo
  1. Bitree

    0下载:
  2. 二叉树的建立,与递归遍历,并求其深度-The establishment of a binary tree, and recursively traverse and find its depth
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:309936
    • 提供者:
  1. binarytree

    0下载:
  2. 二叉树前、中、后序遍历,创建,计算深度,叶数-Binary tree before, during and after the traversal, create, calculate the depth, number of leaves
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:36628
    • 提供者:sally
  1. tree

    0下载:
  2. 求二叉树的深度: 给定一个有根二叉树,规定连接两个节点的每条边长度是1,定义树的深度为根到叶子节点距离的最大值。 -Descr iption 给定一个有根二叉树,规定连接两个节点的每条边长度是1,定义树的深度为根到叶子节点距离的最大值。
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:2169
    • 提供者:gj
  1. binary-tree

    0下载:
  2. 二叉树的实现,包括深度和广度遍历等基本功能-Binary tree implementations, including traversing the depth and breadth of the basic functions
  3. 所属分类:TreeView

    • 发布日期:2017-04-03
    • 文件大小:554625
    • 提供者:许靖
  1. source_code

    0下载:
  2. 1.排序算法:快排,插入排序,选择排序,冒泡排序,堆排,归并排序 2.无向图:建立邻接表,并深度遍历 3.二叉树:建树,插入叶子节点并删除,计算深度及高度,前序中序后序遍历,以及用栈实现的非递归遍历 4.二叉排序树:建树并插入、删除结点 5.通讯录:有主界面,能添加,删除查找相应的数据-1.sort:quicksort select sort,insert sort,heap sort.etc. 2.graph:create with the adjacent list,an
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:15453
    • 提供者:zyw
  1. kdtree

    0下载:
  2. 实现二叉树建立,前序、中序、后序、深度等搜索功能-To achieve the establishment of a binary tree, the former in depth search
  3. 所属分类:Data structs

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