I'm to write an event based simulator in C#. I need a sorted container for the scheduler that has the following capabilities:
- Key - Value pairs are stored sorted by the key (Time, Delegate pairs)
- Efficient inserts and removes by key (Smallest items are removed, inserts are arbitrary)
- The smallest item (key value pair) can be queried.
What I need is actually a very basic binary tree or a sorted queue or something similar. But the options I have in .NET - SortedList and SortedDictionary - are unsatisfactory. The first has efficiency issues with inserts and removes, the second has problems with querying the smallest items.
Should I start implementing my own container or I miss something? It is so unbelievable that there is no built in container that fits my needs.
Thanks!
(update: Im looking for a solution under .NET 2.0)
SortedDictionaryand keep track of the smallest item yourself? – Tim Robinson Nov 11 '10 at 11:12sortedDictionary.First()? – Frédéric Hamidi Nov 11 '10 at 11:15