Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. usetikzlibrary{calc,arrows,positioning}
  4. begin{document}
  5. tikzset{
  6. treenode/.style = {align=center},
  7. c/.style = {treenode,circle,draw=black,minimum width=1.5em,minimum height=1.5em,text centered,font=footnotesize},
  8. r/.style = {treenode,rectangle,draw=black,minimum width=1.5em,minimum height=1.5em,text centered,font=footnotesize},
  9. level 1/.style={sibling distance=60mm},
  10. level 2/.style={sibling distance=30mm},
  11. level 3/.style={sibling distance=15mm},
  12. level 4/.style={sibling distance=7mm}
  13. }
  14. begin{tikzpicture}[->,>=stealth',thick]
  15. node[c] {a}
  16. child{ node[c] {b}
  17. child{ node[c] {c}
  18. child{ node[c] {d}
  19. child{ node[r] {0}}
  20. child{ node[r] {0}}
  21. }
  22. child{ node[c] {d}
  23. child{ node[r] {0}}
  24. child{ node[r] {1}}
  25. }
  26. }
  27. child{ node [c] {c}
  28. child{ node[c] {d}
  29. child{ node[r] {0}}
  30. child{ node[r] {0}}
  31. }
  32. child{ node[c] {d}
  33. child{ node[r] {0}}
  34. child{ node[r] {1}}
  35. }
  36. }
  37. }
  38. child{ node[c] {b}
  39. child{ node [c] {c}
  40. child{ node[c] {d}
  41. child{ node[r] {0}}
  42. child{ node[r] {0}}
  43. }
  44. child{ node[c] {d}
  45. child{ node[r] {0}}
  46. child{ node[r] {1}}
  47. }
  48. }
  49. child{ node [c] {c}
  50. child{ node[c] {d}
  51. child{ node[r] {1}}
  52. child{ node[r] {1}}
  53. }
  54. child{ node[c] {d}
  55. child{ node[r] {1}}
  56. child{ node[r] {1}}
  57. }
  58. }
  59. }
  60. ;
  61. end{tikzpicture}
  62. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement