I'am having draw two tree using the tikz-pgf package
\begin{frame}
\begin{columns}[c]
\begin{column}{2cm}
\begin{tikzpicture}[scale=0.5]
\tikzstyle{level 1}=[sibling distance=10mm]
\node{f}
child{node{a}}
child{node{f} child{node{b}} child{[red] node{f } child{node{a}} child{node{f} child{node{b}}child{node{b}}} }}
;
\end{tikzpicture}
\end{column}
\begin{column}{2cm}
\begin{tikzpicture}[scale=0.5]
\tikzstyle{level 1}=[sibling distance=10mm]
\node{f}
child{node{a}}
child{node{f} child{node{b}} child{ node{f } child{node{a}} child{node{g} child[missing] child{node{a}}} }}
;
\end{tikzpicture}
\end{column}
\end{columns}
\end{frame}
The result is :

Now i want to connect these two images by a curve line like this

i don't know how i will do it , any answer will be appreciates
