Fast enumeration tree - represents an ordered sequence of elements with O(n) insert, remove, and position
Supports the following operations:
insert(id, pos)
- insert elementid
at positionpos
remove(pos)
- remove element at positionpos
pos(id)
- return the position of elementid
Currently have part of a proof-of-concept in node.js, the "real" implementation will be in C.
- Red-Black balancing
- Delete
- Implement in blazing-fast C