notas/arbol/img/src/nodo_arbol_busqueda_binario.gv (285B)
1 // compile with dot 2 3 graph Tree { 4 rankdir=TB; 5 splines=polyline; 6 node [shape=record, fontname="sans"]; 7 8 R [label= "{{<left>*|dato|<right>*}}"]; 9 A [label= "{{<left>*|dato|<right>*}}"]; 10 B [label= "{{<left>*|dato|<right>*}}"]; 11 12 R:left -- A; 13 R:right -- B; 14 }
