CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - tree node

搜索资源列表

  1. shujujiegou-erchashu

    0下载:
  2. 叉排序树与平衡二叉排序树基本操作的实现 用二叉链表作存储结构 (1)以回车( \\n )为输入结束标志,输入数列L,生成二叉排序树T; (2)对二叉排序树T作中序遍历,输出结果; (3)计算二叉排序树T的平均查找长度,输出结果; (4)输入元素x,查找二叉排序树T,若存在含x的结点,则删除该结 点,并作中序遍历(执行操作2);否则输出信息“无结点x”; (5)判断二叉排序树T是否为平衡二叉树,输出信息“OK!”/“NO!”;-fork trees and
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:2028
    • 提供者:胡图
  1. yufafenxikejianzongshu

    0下载:
  2. 每种程序设计语言都有描述程序语法结构的规则。例如,Pascal程序由程序块(又叫分程序)构成,程序块由语句组成,语句由表达式组成,表达式由记号组成等等。这些规则可以用上下文无关文法或BNF范式(Backus-Naur Form)描述。 编译器常用的文法分析方法有自上而下和自下而上两种。正如它们的名字所示,自上而下分析器建立分析树是从根结点到叶结点,而自下而上分析器恰好反过来。它们的共同点是从左向右地扫描输入,每次一个符号。 最有效的自上而下和自下而上的分析法都只能处理上下文无关文法的子
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:134421
    • 提供者:李爱春
  1. d.doc

    0下载:
  2. 题目:对记录序列:{55,13,23,72,109,67,2,78,13}分别使用顺序查找和折半查找算法实现特定关键字值记录的查找。然后建立该记录序列的二叉排序树,并在其上实现特定关键字值结点的查找和删除。-Title: on the record sequence: (), respectively 55,13,23,72,109,67,2,78,13 order to find and use half the search algorithm to achieve a specific k
  3. 所属分类:Document

    • 发布日期:2017-04-06
    • 文件大小:6538
    • 提供者:sad
  1. paxieeuew

    0下载:
  2. 1.创建二叉树 2.输出二叉树 4.二叉树的前中后三序遍历 5.删除特定关键字结点 0.退出程序-1. Create a binary tree 2. Output binary tree 4. Bintree three after the first traversal of 5. Delete specific keyword node 0. Exit procedures
  3. 所属分类:Document

    • 发布日期:2017-04-11
    • 文件大小:1013
    • 提供者:张清
  1. 2008638621518

    0下载:
  2. 树是由n(n≥0)个结点组成的有限集合T。n=0的树称为空树;对n>0的树,有:(1)仅有一个特殊的结点称为根结点,根结点没有前驱结点;(2)当n>1时,除根结点外其余的结点分为m(m>0)个互不相交的有限集合T1,T2,…,Tm,其中每个集合Ti本身又是一棵结构和树类似的子树。 -Tree is n (n ≥ 0) consisting of nodes finite set T. n = 0 of the tree known as the empty tree fo
  3. 所属分类:Project Design

    • 发布日期:2017-04-29
    • 文件大小:145940
    • 提供者:李南
  1. tree

    0下载:
  2. 定义二叉树的结点类型,实现其最基本的操作-The definition of binary tree node type, to achieve its most basic operations
  3. 所属分类:Document

    • 发布日期:2017-04-04
    • 文件大小:632
    • 提供者:候青
  1. code

    0下载:
  2. 以邻接多重表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列和相应生成树的边集。-To the adjacent multi-sheet for the storage structure, to achieve connected undirected graph depth-first and breadth-first traversal. To user-specified node as a starting point, r
  3. 所属分类:File Formats

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

    0下载:
  2. 输入一个字符串,并建成一棵二叉树,满足左子树的字符都要小于根结点的字符,右字树的字符都要大于根结点的字符,每个结点值有字符和字符的出现次数,并用三种遍历方法打印,比较是否与自己想象的相一致。再求树的深度、叶子结点数、最大结点值。-Enter a string, and the completion of a binary tree, to meet the characters in the left subtree must be less than the root node of the
  3. 所属分类:software engineering

    • 发布日期:2017-04-06
    • 文件大小:4059
    • 提供者:fanfausun
  1. commons-logging-1.1.1-bin(2)

    0下载:
  2. java tree node used in graphical situation
  3. 所属分类:Document

    • 发布日期:2017-04-09
    • 文件大小:1076129
    • 提供者:don
  1. BinarySearchTree

    0下载:
  2. A binary search tree is a binary tree that is either empty or in which each node contains a key that satisfies the following conditions: 1) All keys (if any) in the left subtree of the root precede (are less than or equal to) the key of the
  3. 所属分类:software engineering

    • 发布日期:2017-03-30
    • 文件大小:66572
    • 提供者:Rauahn
  1. optimal-binary-tree

    0下载:
  2. 这个程序通过dp来构建最优的二叉树,使得效率更好,将高概率的结点放在高处。通过o(n^2)实现。-To build this program by dp optimal binary tree, making better efficiency, the high probability of the node on the height. O (n ^ 2).
  3. 所属分类:File Formats

    • 发布日期:2017-12-04
    • 文件大小:12905
    • 提供者:luyifan
  1. 2-3-tree

    0下载:
  2. n computer science, a 2-3 tree is a type of data structure, a tree where every node with children (internal node) has either two children (2-node) and one data element or three children (3-nodes) and two data elements. Nodes on the outside of the tre
  3. 所属分类:Communication

    • 发布日期:2017-11-28
    • 文件大小:15100
    • 提供者:aa
  1. tree-data

    0下载:
  2. In computer science, a tree is a widely used data structure that simulates a hierarchical tree structure with a set of linked nodes. A tree can be defined recursively (locally) as a collection of nodes (starting at a root node), where each node
  3. 所属分类:Communication

    • 发布日期:2017-12-06
    • 文件大小:8727
    • 提供者:aa
  1. androiddemo

    0下载:
  2. 一个项目用Swing写了一个节点带有Checkbox的树状控件,并有3种工作方式。拿出来和大家共享。SWT的Tree控件本身就可以在节点上加上Checkbox。这也是我喜欢SWT的一个原因。 顺带的,也尝试了一下把一个AWT/Swing控件加到SWT的Composite上,效果非常好.-A project using Swing write a tree node with Checkbox controls, and three kinds of work. Out and shar
  3. 所属分类:software engineering

    • 发布日期:2017-12-04
    • 文件大小:1413002
    • 提供者:王成
  1. Cpp1

    0下载:
  2. 非递归中序遍历二叉树:要求从键盘输入二叉树各结点的值,并使用二叉链表来存储二叉树;使用非递归算法遍历二叉树,在屏幕上打印出二叉树中序遍历序列。-Non-recursive traversal of binary tree: the input binary tree node value from the keyboard and use the binary tree to store binary tree non-recursive algorithm for binary tree t
  3. 所属分类:File Formats

    • 发布日期:2017-11-27
    • 文件大小:665
    • 提供者:Grape
  1. erchashu

    0下载:
  2. 非递归中序遍历二叉树:要求从键盘输入二叉树各结点的值,并使用二叉链表来存储二叉树;使用非递归算法遍历二叉树,在屏幕上打印出二叉树中序遍历序列。-Non-recursive traversal of binary tree: the input binary tree node value from the keyboard and use the binary tree to store binary tree non-recursive algorithm for binary tree t
  3. 所属分类:File Formats

    • 发布日期:2017-12-07
    • 文件大小:669
    • 提供者:Grape
  1. zTree_v3-master

    0下载:
  2. ztree for jquery javascr ipt tree node. very lightweight
  3. 所属分类:software engineering

    • 发布日期:2017-03-27
    • 文件大小:794733
    • 提供者:honduras
  1. Tree-Based Routing Protocol for Wireless Sensor Networks

    0下载:
  2. The issue of supporting mobility in Wireless Sensor Networks is recently attracting increasing attention within the research community as new-born application scenarios require the deployment of hybrid network architectures composed of fixed and mobi
  3. 所属分类:其它文档

  1. shiyan

    0下载:
  2. 该程序的功能是实现二叉树结点的类型定义和对二叉树的基本操作。该程序包括二叉树结构类型以及每一种操作的具体的函数定义和主函数。-The function of the program is the realization of binary tree node type definition and basic operation of binary tree. The program including the binary tree structure types, and each kind
  3. 所属分类:software engineering

    • 发布日期:2017-04-25
    • 文件大小:24414
    • 提供者:老毕
  1. An-Efficient-Tree-based-Power-Saving-Scheme-for-W

    0下载:
  2. Wireless sensor networks with mobile sink are ex-pected to increase the flexibility for gathering information in large-scale sensing and detecting environments. Energy saving becomes one of the most important features of the sensor nodes to extend th
  3. 所属分类:Communication

    • 发布日期:2017-05-07
    • 文件大小:1226338
    • 提供者:wadgiad
« 12 »
搜珍网 www.dssz.com