Binary Search Tree
Create a Binary Search Tree.
Usage
src/sample/binarysearchtree.ts
import { BinarySearchTree } from 'athro';
let bst = new BinarySearchTree();
Available Methods
Methods available for BinarySearchTree.
Methods | Description | Syntax |
---|---|---|
insert | Add item to the bst | bst.insert(value) |
isPresent | Check if a value is present in the bst | bst.isPresent() |