1)tree structure树结构
1.Data striping criterion for simple tree structure storage system and its verification;简单树结构存储系统数据分块标准及其证明
2.Application of tree structure in N-body problem;树结构在N体问题中的应用
3.Angle-Based Tree Structure Algorithm of Data-Aggregation for Wireless Sensor Networks;基于偏转角的树结构数据融合路由算法
英文短句/例句
1.Modeling and Kinematic Analysis of Mechanism Based on Tree Structure基于树结构的机构建模与运动学分析
2.Drag onto the page to add a tree structure.拖到绘图页后,可以添加树结构。
3.A METHOD FOR HANDWRITTEN CHINESE CHARACTER RECOGNITION BASED ON THE AND-OR TREE STRUCTURE基于与或树结构的手写汉字识别方法
4.The formation of a treelike shape or arrangement.树状结构似树的形状或排列的结构
5.In data structures, a collection of trees.数据结构中的一种树型结构的集合。
6.The research results show below: (1) The bark of Acacia spp.结果表明:(1)相思树皮结构为叠生构造。
7.Studies on Structure of Bark and Chemical Component of Lacquer and the Bark in Toxicodendron Vernicifluum (Stokes) F.A. Barkley;漆树树皮结构与树皮及生漆化学成分研究
8.Comparison of Biological Sequences/structures and Construction of Phylogenetic Trees;生物序列/结构的比较及进化树的构建
9.The Research and Implementation of Component Assembly Based on Tree Structure Component Library基于树形结构构件库组装研究与实现
10.Structure: Adopting to polyester film as dielectric, iuductrive construction, epoxy resin as dip material.结构:聚酯膜作介质,有感结构,环氧树脂包封。
11.A Method for Encoding XML-based Tree Structures and Measuring Structural Similarity;基于XML的树型结构编码及结构相似性匹配方法
12.Response of structural plasticity of Tilia amurensis sapling crowns to different light conditions.不同光环境下紫椴幼树树冠结构的可塑性响应
13.Calculating Biomass and Carbon Storage of Poplar Plantation Based on Tree Structure基于树体结构推算杨树人工林生物量及碳储量
14.Relationship between Bark Structure and Fire-resistant Property of Woods树皮结构特征与树木耐火性的关系研究
15.SPECTA (structure-preserved error-correcting tree automata)结构保持误差校正树状自动机
16.macroreticular structure ion exchange resin大孔网状结构离子交换树脂
17.resembling a tree in form and branching structure.在形状和分支的结构上类似于树木。
18.architecture of a tree-based image processor树基图像处理机的体系结构
相关短句/例句
tree-structure树结构
1.A new tree-structure is defined by developing traditional tree-structure.为此,对传统的树结构进行扩展,建立一种新的树结构。
2.The situation of storing XML in relation database is first presented and the incompatibility of the plane-structure-based rela-tional data models with the tree-structure-based XML data model is illustrated.分析了基于关系数据库的XML数据存储现状,阐明了树结构XML数据模型与平面结构关系数据模型之间的不匹配性,在此基础上对存储粒度进行了研究,着重分析了细粒度模型的原理。
3.The spread spectrum fingerprints embedding is researched based on tree-structure at multicast following Gaussian with bandwidth requirement.在多播环境下,考虑带宽影响研究了一种基于树结构的扩频指纹嵌入系统。
3)tree[英][tri:][美][tri]树状结构 [树]
4)tree-network structure树网结构
1.It also proposes the pattern of tree-network structure of urban green space based on the advantage and flaw of tree-type structure and network-type structure.结合树型结构和网络结构的自身优势与缺陷,提出了城市绿地树网型结构模式,并对城市绿地树网结构的特征、优势和研究方向提出了建议。
5)tree-like structure树形结构
1.In order to solve the problems in the automobile test integration system,in this paper,the tree-like structure is introduced to the design on the database,in which the definition and the design method are narrated in detail.文中将树形结构引入到数据库设计中,详细讨论了该树形结构的定义以及设计方法。
6)Tree structure树形结构
1.The Research of Tree Structure Based on XML and Relational Database;基于XML和关系数据库的树形结构的研究
2.Storage and operation of tree structure in relational database;树形结构在关系数据库中的存储与运算
3.Control of Education Quality of Distance Education Based on Tree Structure;基于树形结构的远程教育系统的教育质量控制
延伸阅读
树结构树结构tree s协明份got;树结构(t ree)由n(n异0)个结点的有限集合所构成的一种数据结构。当n~。时称为空树,非空树递归定义如下:①有且仅有一个称为根的结点;②其余结点可分为二(。)0)个互不相交的子集,其中每一个子集本身又是一棵树,称为根的子树。树结构在客观世界中广泛存在,也是程序设计中各种信息的重要组织~一。 树中的结点包含一个数据元素及若于指向其子树的分支。结点拥有的子树数(分支数)称为该结点的度,用石表示。度为o的结点称为叶或终端结点;度不为O的结点称为分支结点或非终端结点。树中各结点的度的最大值称为树的度。树是一种层次结构,结点的层次从根开始定义,根为第一层,若某结点在第艺层,则其子树的根为第i+1层。树中结点的最大层次称为树的深度或高度。若树中各结点的子树之间在逻辑上存在顺序关系的,则称该树为有序树;否则,称为无序树。 在计算机中,通常采用多链式存储结构来表示树结构。对树的操作有:①检索树中的结点;②遍历树中各结点,即按某种规则巡访树中每个结点,使得每个结点被访问一次且仅访问一次;③添加子树;④删除子树等。 在程序设计中较广泛使用的树结构有: (1)二叉树:度k毛2的有序树。二叉树与一般树(度龙>2的k叉树)之间存在一种一一对应的转换算法。在通常采用的用同构(等长)的多链式存储结构表示的树吟二叉树的密度最高·因此,二叉树除了本身有着广泛的用途外,还可以用作一般树的存储结构。 (2)霍夫曼(Huffman)树:带权路径长度最短的二叉树。带权路径长度是从根到树中所有带权叶子之间的路径长度与树的乘积之和。根据给定的一组权值,构造一棵相应的Huffman树的算法,称为Huffman算法。Huf如an树有着广泛的应用,如在解决某些判定问题时,利用Huffman树可以得到最佳的判定算法;在快速远距离通信中,可以得到编码长度最短的编码。
