sig
  type t = Red_black_tree.RedBlackTree(Person).t
  val empty_tree : t
  val insert : t -> Person.t -> t
  val find : t -> Person.t -> bool
  val height : t -> int
  val string_of_tree : t -> string
end