class Trees { // vollst. bin. Baum der Höhe h static Tree<Integer> full (int h); } System.out.println (Trees.full(1)) ==> Branch{left=Leaf{key=0},right=Leaf{key=0}}