-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (34 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
42 lines (34 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Binary Tree</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>BINARY TREE</h1>
<div style="height: 50px;"></div>
<input id="node_val">
<button id="add_node">Add Node</button>
<div style="height: 50px;"></div>
<ul class="traversals" id="InOrder">
<h3>In Order Traversal</h3>
</ul>
<ul class="traversals" id="PreOrder">
<h3>Pre Order Traversal</h3>
</ul>
<ul class="traversals" id="PostOrder">
<h3>Post Order Traversak</h3>
</ul>
<ul class="traversals" id="BFT">
<h3>Breadth First Traversal</h3>
</ul>
<div id="sketch">
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.14/p5.js"></script>
<script src="Queue.js"></script>
<script src="binary_tree.js"></script>
<script src="main.js"></script>
</body>
</html>