How to construct/obtain a datastructure with the following capabilities:
- Stores (key,value) nodes, keys implement IComparable.
- Fast (log N) insertion and retrieval.
- Fast (log N) method to retrieve the next higher/next lower node from any node. [EXAMPLE: if the key values inserted are (7,cat), (4,dog),(12,ostrich), (13,goldfish) then if keyVal referred to (7,cat), keyVal.Next() should return a reference to (12,ostrich) ].
A solution with an enumerator from an arbitrary key would of course also suffice. Note that standard SortedDictionary functionality will not suffice, since only an enumerator over the entire set can be returned, which makes finding keyVal.next require N operations at worst.
Could a self-implemented balanced binary search tree (red-black tree) be fitted with node.next() functionality? Any good references for doing this? Any less coding-time consuming solutions?
.MoveNext(),.MoveNext(), ...? – Oscar Mederos May 9 '11 at 8:07SortedDictionaryclass. It should beO(n)yield all the elements in sorted order, so everytime you do.MoveNext()that will beO(1)– Oscar Mederos May 9 '11 at 8:12