I have a DFA transition table like
\begin{array}{cc|c|c}
& & 0 & 1 \\ \hline
\to & p & qs & q \\
* & q & r & qr \\
* & qs & r & pqr \\
& r & s & p \\
* & s & t & p \\
& t & t & t \\
* & qr & rs & pqr \\
* & pqr & qrs & pqr \\
* & rs & s & p\\
* & qrs & rs & pqr
\end{array}
I am not able to draw the transition diagram as it's getting too much complicated. Any help is appreciated.
EDIT: I drew the transition diagram but some of the lines were intersecting each other. Is there any way not to intersect those lines?