Eine Möglichkeit wäre, auch ohne `node` in der dritten Ebene ein weiteres `child` einzufügen:
\documentclass[tikz,margin=5mm]{standalone}
\begin{document}
\begin{tikzpicture}[scale=0.9,level/.style={sibling distance=60mm/#1}]
\node[circle,draw] (AEDCB){$AEDCB$}
child {node[circle,draw] (AED) {$AED$}
child {node[circle,draw] (AE) {$AE$}
child {node[circle,draw](A) {$A$}}
child {node[circle,draw](E) {$E$}}}
child {
child{node[circle,draw] (D) {$D$}}}
}
child {node[circle,draw](CB){$CB$}
child {
child{node[circle,draw](C) {$C$}}}
child {
child{node[circle,draw](B) {$B$}}}
};
\end{tikzpicture}
\end{document}
![alt text][1]
----------
Alternativ könnte man auch die `graphdrawing` Bibliothek nutzen, benötigt dafür aber die pgf/tikz-Version 3.0 und muss LuaLaTeX verwenden:
\documentclass[tikz,margin=5mm]{standalone}
\usetikzlibrary{graphs,graphdrawing}
\usegdlibrary{layered,trees}
\begin{document}
\begin{tikzpicture}
\graph[layered layout,nodes={circle,draw},sibling distance=15mm,level distance=10mm,]{
AEDCB/$AEDCB$--AED/$AED$--{AE/$AE$--{A/$A$,E/$E$},D/$D$},
AEDCB--CB/$CB$--{C/$C$,B/$B$},
{[same layer]AED,CB},
{[same layer]A,E,D,C,B}
};
\end{tikzpicture}
\end{document}
![alt text][2]
[1]: http://texwelt.de/wissen/upfiles/Baum.PNGhttp://texwelt.de/wissen/upfiles/Baum.PNG
[2]: http://texwelt.de/wissen/upfiles/BaumGr.PNG