let concat t1 t2 =
      match (t1, t2) with
        (Empty, t) -> t
      | (t, Empty-> t
      | (_, _) -> join t1 (min_elt t2) (remove_min_elt t2)