reorganize directory and file structure
This commit is contained in:
parent
1d826ea8d4
commit
48390b8556
99 changed files with 1155 additions and 1629 deletions
13
examples/rbtree.js
Normal file
13
examples/rbtree.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import createRBTree from "functional-red-black-tree";
|
||||
|
||||
console.log("#############");
|
||||
console.log("## RB Tree ##");
|
||||
console.log("#############");
|
||||
|
||||
// just a small experiment
|
||||
console.log(
|
||||
createRBTree()
|
||||
.insert(1)
|
||||
.insert(1)
|
||||
.insert(2)
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue