typedef struct	avl_tree {
		struct avl_tree	*avl_l, *avl_r;
		Int1	avl_b;
		char	*avl_p;
	} avl_tree;

