UNPKG
btree-js
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A rebalancing binary tree for JS
github.com/QuotableWater7/btree
QuotableWater7/btree
btree-js
/
demo
/
printer.js
10 lines
(7 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
Tree
=
require
(
'../src/tree'
);
var
tree =
new
Tree
(); tree.
bulkInsert
(
1
,
3
,
5
,
2
,
4
,
6
,
7
,
8
,
9
,
15
,
11
,
13
,
17
,
18
,
14
,
19
,
25
,
30
,
22
,
21
,
10
,
16
); tree.
print
();