定义AVL树结点
public class AvlNode {
/**
* 数据元素
*/
T element;
/**
* 结点高度
*/
int height;
/**
* 结点左儿子
*/
AvlNode left;
/**
* 结点右儿子
*/
Avl