I created a tree using TikZ and would like to add tabular explanation data to the right of it.
The figure definition currently looks like this:
\begin{figure*}[h!]
\input{tikz/praefixeigenschaft}
\label{f:praefixeigenschaft}
\end{figure*}
...and renders to the following tree:

The explanation text is defined as follows:
\begin{tabular}{l l}
A = 100 & p = 0.2 \\
B = 1101 & p = 0.1 \\
C = 1100 & p = 0.1 \\
D = 111 & p = 0.2 \\
E = 0 & p = 0.4 \\
\end{tabular}
CEBA: 1100 / 0 / 1101 / 100
...and renders to:

I tried both placing the figure in a table and floating the figure using the wrapfig package, but both attempts were not fruitful.
How can I add the explanation text to the right of the figure (like in simple HTML table layout)?
