I want to create the following structure in LaTeX:

Unfortunately I couldn't find a similar example in the pgf manual using the same symbols. An answer just showing basically how to produce a structure like the image shows, meaning a bit of code from which I can deduce the rest, would be fine.
EDIT: After taking a look at the circuitikz documentation, I came to the following result:
\documentclass{article}
\usepackage{circuitikz}
\begin{document}
\begin{tikzpicture}
\node [ocirc, label=left:1] (1) at (0,3) {};
\node [ocirc, label=left:0] (0) at (0,2) {};
\node [ocirc, label=left:{$x_1$}] (x) at (0,1) {};
\node [ocirc, label=left:{$\overline{x_1}$}] (nx) at (0,0) {};
\node [ocirc, label=right:{$y$}] (y) at (5,1.5) {};
\node [circ] (c1) at (4,2) {};
\node [circ] (c2) at (4,1) {};
\node [circ] (c3) at (4,1.5) {};
\draw (c3) to (y);
\draw (1) to[cspst] (4,3);
\draw (0) to[cspst] (c1);
\draw (x) to[cspst] (c2);
\draw (nx)to[cspst] (4,0);
\draw (4,3) to (4,0);
\end{tikzpicture}
\end{document}
Resulting in:

Now my more precise questions are:
- How can I draw lines with multiple
cspstat a specific place? - How to avoid the line begining in the
ocirc? - Is there a simpler way without using coordinates?



circuitikzyou ought to look into the specific manual which is thecircuitikzmanual (sincecircuitikzis a distinguished package). The above elements are called closing switchescspstwhich are defined incircuitikz. Thecircuitikzmanual can be accessed bytexdoc– bloodworks Jan 8 at 16:53circuitikzdocumentation, I made an edit on my post including an MWE and more specific questions. – xfoo Jan 8 at 17:54draw-it-for-metohelp-me-tweak, very nice! – cmhughes Jan 8 at 18:34