@shlappas/balanced

A generic self-balancing binary tree

Usage no npm install needed!

<script type="module">
  import shlappasBalanced from 'https://cdn.skypack.dev/@shlappas/balanced';
</script>

README

balanced.js

A simple generic module that allows the manipulation of binary tree nodes via four rotation methods:

  • single left (AVL "LL" rotation)
  • single right (AVL "RR" rotation)
  • double left (AVL "LR" rotation)
  • double right (AVL "RL" rotation)

Installation

Just install it with your favourit package manager!

yarn

yarn add @shlappas/balanced

npm

npm install @shlappas/balanced