1066 Root of AVL Tree
Statement
Metadata
- 作者: CHEN, Yue
- 单位: 浙江大学
- 代码长度限制: 16 KB
- 时间限制: 400 ms
- 内存限制: 64 MB
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.
Input Specification
Each input file contains one test case. For each case, the first line contains a positive integer
Output Specification
For each test case, print the root of the resulting AVL tree in one line.
Sample Input 1
Sample Output 1
Sample Input 2
Sample Output 2
Last update: May 4, 2022