-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrees.html
43 lines (37 loc) · 859 Bytes
/
trees.html
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
36
37
38
39
40
41
42
43
<html>
<head>
<title>LLRB D3</title>
<style>
svg {
width: 100%;
height: 100%;
font-family: monospace;
user-select: none;
}
#ui {
position: absolute;
}
#ops {
color: white;
}
html {
background-color: black;
}
</style>
</head>
<body>
<div id="ui">
<button id="add">Add</button>
<button id="start">Start</button>
<button id="rotleft">Rotate left</button>
<button id="rotright">Rotate right</button>
<button id="newbst">New BST</button>
<button id="newllrb">New LLRB</button>
<pre id="ops"></pre>
</div>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="bst.js"></script>
<script src="llrb.js"></script>
<script src="trees.js"></script>
</body>
</html>