未完成-PAT甲级练习1066. Root of AVL Tree (25)

来源:互联网 发布:unity3d游戏开发实例 编辑:程序博客网 时间:2024/05/20 11:37

1066. Root of AVL Tree (25)

时间限制
100 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property. Figures 1-4 illustrate the rotation rules.

    

    

Now given a sequence of insertions, you are supposed to tell the root of the resulting AVL tree.

Input Specification:

Each input file contains one test case. For each case, the first line contains a positive integer N (<=20) which is the total number of keys to be inserted. Then N distinct integer keys are given in the next line. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print ythe root of the resulting AVL tree in one line.

Sample Input 1:
588 70 61 96 120
Sample Output 1:
70
Sample Input 2:
788 70 61 96 120 90 65
Sample Output 2:
88
考查avl平衡树,应该来不及看了。。。这题好像和1123代码类似,暂且放一放,估计没时间看了

贴上别人的代码http://blog.csdn.net/jtjy568805874/article/details/53609945


0 0
原创粉丝点击