中英
tree leaf
/ triː liːf /
  • 简明
  • 树叶
  • 网络释义
  • 专业释义
  • 1

     树叶

    树叶镀金工艺 关键词:树叶;电镀;镀金;工艺流程 [gap=425]Keywords:tree leaf;electroplating;gold plating;process

短语
查看更多
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    From the Data tree Properties view (Figure 29), with the odc: tree leaf selected, specify these values.
    从Data tree Properties视图(图29)中,选择odc: tree页节点,指定以下这些值。
  • 2
    Wherever we go, the maple tree leaf reminds us of our great country and of our beautiful hometown Vancouver.
    无论我们走到哪里,枫叶是我们想起我们伟大的祖国和我们美丽的故乡温哥华。
  • 3
    However, you need to make the widget look like an organization (tree node), instead of like an employee (tree leaf).
    但是,需要让这个部件看起来像一个组织(树节点),而不是像职员(树叶)。
查看更多
  • 百科
  • Tree leaf

    In computer science, a tree is a widely used abstract data type (ADT) or data structure implementing this ADT that simulates a hierarchical tree structure, with a root value and subtrees of children, represented as a set of linked nodes.A tree data structure can be defined recursively (locally) as a collection of nodes (starting at a root node), where each node is a data structure consisting of a value, together with a list of references to nodes (the "children"), with the constraints that no reference is duplicated, and none points to the root.Alternatively, a tree can be defined abstractly as a whole (globally) as an ordered tree, with a value assigned to each node. Both these perspectives are useful: while a tree can be analyzed mathematically as a whole, when actually represented as a data structure it is usually represented and worked with separately by node (rather than as a list of nodes and an adjacency list of edges between nodes, as one may represent a digraph, for instance). For example, looking at a tree as a whole, one can talk about "the parent node" of a given node, but in general as a data structure a given node only contains the list of its children, but does not contain a reference to its parent (if any).

查看更多