Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 360 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 360 Bytes

AVL Tree

AVL Tree implementation in C++20.

Features

  • AVL, Naive binary search tree implementations
  • OrderedSet parametrized by BST type
  • IndexedOrderedSet with O(logn) kth element method
  • BST Node contains payload that is computed from its children
  • Common algorithms: Search, Min/Max, Lower/Upper Bound, Successor/Predecessor