mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
Misc; E-Mail von Moritz
This commit is contained in:
parent
9c0864f122
commit
0508de3f6a
14 changed files with 122 additions and 16 deletions
16
documents/Programmierparadigmen/figures/binary-tree.tex
Normal file
16
documents/Programmierparadigmen/figures/binary-tree.tex
Normal file
|
@ -0,0 +1,16 @@
|
|||
\tikzstyle{vertex}=[draw,fill=black!15,circle,minimum size=20pt,inner sep=0pt]
|
||||
\begin{tikzpicture}[very thick,level/.style={sibling distance=60mm/#1}]
|
||||
\node [vertex] (r){$a$}
|
||||
child {
|
||||
node [vertex] (a) {$b$}
|
||||
child {
|
||||
node [vertex] {$c$}
|
||||
}
|
||||
child {
|
||||
node [vertex] {$d$}
|
||||
}
|
||||
}
|
||||
child {
|
||||
node [vertex] {$e$}
|
||||
};
|
||||
\end{tikzpicture}
|
Loading…
Add table
Add a link
Reference in a new issue