I'm reading about AVL tree and there I redirected to self balancing tree there I read that
In computer science, a self-balancing (or height-balanced) binary search tree is any node-based binary search tree that automatically keeps its height (maximal number of levels below the root) small in the face of arbitrary item insertions and deletions.1
These structures provide efficient implementations for mutable ordered lists, and can be used for other abstract data structures such as associative arrays, priority queues and sets.
I'm confused
- What is the relation of height to list? array?
- how small height tree provide efficient implementations for mutable ordered lists? array? queues?
- Let suppose the node of list or index of array are height of list or array, how it could be small?