dope2/snippets/rbtree.js
2025-06-05 10:10:33 +02:00

13 lines
257 B
JavaScript

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).begin
);