-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.dot
More file actions
35 lines (35 loc) · 669 Bytes
/
tree.dot
File metadata and controls
35 lines (35 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
graph tree {
"16" [label="-"];
"6" [label="+"];
"4" [label="-"];
"3" [label="sqrt"];
"2" [label="-"];
"0" [label="36.2"];
"1" [label="5.3"];
"5" [label="2.0"];
"15" [label="*"];
"13" [label="/"];
"11" [label="*"];
"9" [label="+"];
"7" [label="3.1"];
"8" [label="5.52"];
"10" [label="4.0"];
"12" [label="-3.0"];
"14" [label="x"];
"16" -- "6";
"16" -- "15";
"6" -- "4";
"6" -- "5";
"4" -- "3";
"3" -- "2";
"2" -- "0";
"2" -- "1";
"15" -- "13";
"15" -- "14";
"13" -- "11";
"13" -- "12";
"11" -- "9";
"11" -- "10";
"9" -- "7";
"9" -- "8";
}