Wdhlg. Binäre Bäume

Datentyp für binäre Bäume

data Tree a = Leaf
            | Node { key   :: a
                   , left  :: Tree a
                   , right :: Tree a
                   }
             deriving Show



Johannes Waldmann 2004-11-30