Binäre Bäume

mögliche Implementierung:

class Bin<E> {
  E key; Bin<E> left; Bin<E> right;
}
(Blätter sind null-Objekte)



Johannes Waldmann 2008-01-28