说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 模块结构树
1)  Module Structure Tree
模块结构树
2)  modular structure
模块结构
1.
0 from modular structure,data organization to functional characteristic.
本文从模块结构、数据组织和功能特色几个方面介绍H-Mold3。
2.
The effects of modular structure and triad formation on the structure of our evolving scale-free model are investigated.
在传统的加权网络模型的强度优先连接机制基础上,考虑了网络按照模块结构和三角结构进行演化的特性。
3)  module structure
模块结构
1.
Integral structure is divided into some module structure in the light of topological connection,then,module structure failure probability is computed and obtained according to force transfer principles.
将整体结构按拓扑关系划分为若干模块,根据力的传递原理对模块结构进行失效概率计算,获得各模块结构的失效概率信息;运用有限元模拟分析获得整体结构的失效概率信息。
2.
This paper presents the design idea of the software and hardware, the general structure of the program and the main module structure for the center control computer.
给出中心机软、硬件设计思想 ,程序的总体结构和主要模块结构。
3.
This paper introduces a new program-staged module structure of real-time program and relevant design method.
适于工业控制PC机环境的一种新颖的实时程序层次化模块结构和相应的设计方法。
4)  structure module
结构模块
1.
This model is divided into three levels: knowledge module level, structure module level and presentation module level.
该模型分为3个层次:知识模块层、结构模块层和演示模块层,分别从内容、结构、风格三个层面上构造课件。
5)  tree-modal
树模结构
6)  modular structure
模块化结构
1.
On the basis of basic project managementprinciples,the system utilizes the muliti-level PDM activity network as planning and controlmodel, applies the technology of management by measurement to tracking and evaluation ofproject executing status, follows a modular structure, and adopts implementation strategy ofcombination of development and integration.
系统基于基本的项目管理原理,使用多级PDM活动网络作为计划与控制的模型,运用度量管理技术对项目执行状况进行跟踪与评价,并遵循模块化结构,采用开发与集成相结合的实现策略。
2.
The software and hardware modular structures made this instrument realized the most rational combination in different applied fields and conditions and a higher ratio of performance to price.
该仪表硬、软件的模块化结构,使其能够在不同的应用场合和应用条件下实现最合理的组合,从而实现较高的性能价格比。
3.
It reduces the difficulty in software design because of modular structure programming and level design thought.
软件编程采用模块化结构和层次设计思想,大大降低了编写程序的复杂度。
补充资料:树结构


树结构
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树可以得到最佳的判定算法;在快速远距离通信中,可以得到编码长度最短的编码。
  
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条