Tree Grafting
题目链接
Time Limit: 5000MS
Description
Trees have many applications in computer science. Perhaps the most commonly used trees are rooted binary trees, but there are other types of rooted trees that may be useful as well. One example is ordered trees, in which the subtrees for any given node are ordered. The number of children of each node is variable, and there is no limit on the number. Formally, an ordered tree consists of a finite set of nodes T such that
there is one node designated as the root, denoted root(T);
the remaining nodes are partitioned into subsets T1, T2, …, Tm, each of which is also a tree (subtrees).
Also, define root(T1), …, root™ to be the children of root(T), with root(Ti) being the i-th child. The nodes root(T1), …, root™ are siblings.
It is often more convenient to represent an ordered tree as a rooted binary tree, so that each node can be stored in the same amount of memory. The conversion is performed by the following steps:
remove all edges from each node to its children;
for each node, add an edge to its first child in T (if any) as the left child;
for each node, add an edge to its next sibling in T (if any) as the right child.
This is illustrated by the following:
0 0
/ | \ /
1 2 3 ===> 1
/ \
4 5 2
/
4 3
5
In most cases, the height of the tree (the number of edges in the longest root-to-leaf path) increases after the conversion. This is undesirable because the complexity of many algorithms on trees depends on its height.
You are asked to write a program that computes the height of the tree before and after the conversion.
Input
The input is given by a number of lines giving the directions taken in a depth-first traversal of the trees. There is one line for each tree.
有序树转二叉树高度计算

该博客介绍了一个将有序树转换为二叉树的过程,并指出这种转换可能导致树的高度增加,这可能对依赖树高度的算法复杂性产生影响。作者提供了一个程序,用于计算转换前后的树高度。
最低0.47元/天 解锁文章
2497

被折叠的 条评论
为什么被折叠?



