Created
December 3, 2015 09:47
-
-
Save zenware/f2c43767041441672e4b to your computer and use it in GitHub Desktop.
Graphed It
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph BST { | |
subgraph before_delete { | |
style=filled; | |
color=lightgrey; | |
node [style=filled,color=white]; | |
a0 -> a1; | |
a0 -> a2; | |
} | |
subgraph delete_attach_left { | |
node [style=filled]; | |
b1 -> bnull; | |
b1 -> b2; | |
} | |
subgraph delete_attach_right { | |
node [style=filled]; | |
c2 -> c1; | |
c2 -> cnull; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment