2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/tikz/binary-tree/binary-tree.tex
Martin Thoma 7740f0147f Remove trailing spaces
The commands

find . -type f -name '*.md' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

and

find . -type f -name '*.tex' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

were used to do so.
2015-10-14 14:25:34 +02:00

45 lines
1,009 B
TeX

\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning, calc}
\tikzstyle{vertex}=[draw,fill=black!15,circle,minimum size=20pt,inner sep=0pt]
\begin{document}
\begin{preview}
\begin{tikzpicture}[very thick,level/.style={sibling distance=60mm/#1}]
\node [vertex] (r){$17$}
child {
node [vertex] (a) {$19$}
child {
node [vertex] {$20$}
child {
node [vertex] {$-3$}
child {node [vertex] {$17$}}
child {node [vertex] {$5$}}
}
child {node [vertex] {$6$}}
}
child {
node [vertex] {$3$}
child {node [vertex] {$7$}}
child {node [vertex] {$2$}}
}
}
child {
node [vertex] {$9$}
child {
node [vertex] {$8$}
child {node [vertex] {$2$}}
}
child {
node [vertex] {$11$}
child {node [vertex] {$17$}}
child {node [vertex] {$-4$}}
}
};
\end{tikzpicture}
\end{preview}
\end{document}