struct tree_node { struct tree_node * left_child; element data; short int bf; struct tree_node* right_child; }