Last active
May 9, 2019 03:23
-
-
Save reyoung/d976f3c8b1a081eb0b2e6ae02dd8213e to your computer and use it in GitHub Desktop.
This file contains 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
graph G { | |
A -- B | |
A -- C | |
A -- D | |
} |
This file contains 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
graph G { | |
A -- B | |
A -- C | |
A -- D | |
A -- E | |
A -- F | |
A -- G | |
A -- H | |
A -- I | |
} |
This file contains 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
graph G { | |
A -- B | |
A -- C | |
D -- E | |
D -- F | |
G -- H | |
H -- I | |
I -- G | |
} |
This file contains 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
graph G { | |
subgraph cluster_a { | |
A -- B | |
A -- C | |
} | |
subgraph cluster_b { | |
D -- E | |
D -- F | |
} | |
subgraph cluster_c { | |
G -- H | |
H -- I | |
I -- G | |
} | |
J [label="新人J"] | |
} |
This file contains 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
graph G { | |
doc [shape=box, label="team 文档"] | |
doc -- A [label="我要怎么做系统A"] | |
doc -- B [label="系统A的工作我也有一些看法"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment