AVL Tree
- Source:
Example
import { AVLTree } from '../../ds/avl-tree';
const avl = new AVLTree();
avl.insert(10);
avl.insert(5);
avl.insert(8);
avl.insert(4);
avl.insert(6);
AVL Tree
import { AVLTree } from '../../ds/avl-tree';
const avl = new AVLTree();
avl.insert(10);
avl.insert(5);
avl.insert(8);
avl.insert(4);
avl.insert(6);