开发者

C# Datastructure with SortedDictionary() and node.Next() functionality?

开发者 https://www.devze.com 2023-03-04 02:25 出处:网络
How to construct/obtain a datastructure with the following capabilities: Stores (key,value) nodes, keys implement IComparable.

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开发者_如何学Go: 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?


I once had similar requirements and was unable to find something suitable. So I implemented an AVL tree. Here come some advices to do it with performance in mind:

  1. Do not use recursion for walking the tree (insert, update, delete, next). Better use a stack array to store the way up to the root which is needed for balancing operations.
  2. Do not store parent nodes. All operations will start from the root node and walk further down. Parents are not needed, if implemented carefully.
  3. In order to find the Next() node of an existing one, usually Find() is first called. The stack produced by that, should be reused for Next() than.

By following these rules, I was able to implement the AVL tree. It is working very efficiently even for very large data sets. I would be willing to share, but it would need some modifications, since it does not store values (very easy) and does not rely on IComparable but on fixed key types of int.


The OrderedDictionary in PowerCollections provides a "get iterator starting at or before key" function that takes O(log N) time to return the first value. That makes it very fast to, say, scan the 1,000 items that are near the middle of a 50 million item set (which with SortedDictionary would require guessing to start at the start or the end, both of which are equally bad choices and would require iterator around 25 million items). OrderedDictionary can to that with just 1,000 items iterated.

There is a problem in OrderedDictionary though in that it uses yield which causes O(n^2) performance and out of memory conditions when iterating a 50 million item set in a 32 bit process. There is a quite simple fix for that while I will document later.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号