Binary tree -- Wikipeida

貢獻者:纯情雄♂性 類別:英文 時間:2022-08-11 17:09:12 收藏數:49 評分:3.1
返回上页 舉報此文章
请选择举报理由:




收藏到我的文章 改錯字
In computer science,
a binary tree is a tree data structure in which each node has at most two children,
which are referred to as the left child and the right child.
A recursive definition using just set theory notions
is that a (non-empty) binary tree is a tuple (L, S, R),
where L and R are binary trees or the empty set and S
is a singleton set containing the root.
Some authors allow the binary tree to be the empty set as well.
From a graph theory perspective,
binary (and K-ary) trees as defined here are arborescences.
A binary tree may thus be also called a bifurcating arborescence-a term
which appears in some very old programming books,
before the modern computer science terminology prevailed.
It is also possible to interpret a binary tree as an undirected,
rather than a directed graph, in which case a binary tree is an ordered, rooted tree.
Some authors use rooted binary tree instead of binary tree to emphasize the fact
that the tree is rooted, but as defined above,
a binary tree is always rooted.
A binary tree is a special case of an ordered K-ary tree, where K is 2.
In mathematics, what is termed binary tree can vary significantly from author to author.
Some use the definition commonly used in computer science,
but others define it as every non-leaf having exactly two children
and don't necessarily order (as left/right) the children either.
In computing, binary trees are used in two very different ways:
First, as a means of accessing nodes based on some value or label associated with each node.
Binary trees labelled this way are used to implement binary search trees and binary heaps,
and are used for efficient searching and sorting.
The designation of non-root nodes as left or right child
even when there is only one child present matters in some of these applications,
in particular, it is significant in binary search trees.
However, the arrangement of particular nodes into the tree
is not part of the conceptual information.
For example,
in a normal binary search tree the placement of nodes depends almost entirely on the order
in which they were added,
and can be re-arranged (for example by balancing) without changing the meaning.
Second, as a representation of data with a relevant bifurcating structure.
In such cases,
the particular arrangement of nodes under and/or to the left or right of other nodes
is part of the information (that is, changing it would change the meaning).
Common examples occur with Huffman coding and cladograms.
The everyday division of documents into chapters, sections, paragraphs,
and so on is an analogous example with n-ary rather than binary trees.
声明:以上文章均为用户自行添加,仅供打字交流使用,不代表本站观点,本站不承担任何法律责任,特此声明!如果有侵犯到您的权利,请及时联系我们删除。
文章熱度:
文章難度:
文章質量:
認證文章
說明:系統根據文章的熱度、難度、質量自動認證,已認證的文章將參與打字排名!

本文打字排名TOP20