How can a node be positioned at the center/edge of a part in a multipart node using relative positioning?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\node[align=center,draw,shape=rectangle split,rectangle split horizontal,rectangle split parts=3, text width=2cm] (A) at (1.5,3)
{one\nodepart{two}two\nodepart{three}three};
\node[draw,shape=circle] (E) at (2.7,1) {$E$};
\node[draw,shape=circle] (C) at (3.7,1) {$C$};
\end{tikzpicture}
\end{document}
This is the desired result:
