A binary decision tree structure helpful for visualizing logic or algorithm paths.
graph TD
A[Start] --> B{Is it moving?}
B -- Yes --> C{Should it be?}
B -- No --> D{Should it be?}
C -- Yes --> E[No Problem]
C -- No --> F[Use Duct Tape]
D -- Yes --> G[Use WD-40]
D -- No --> EFlowcharts