Skip to content

Releases: JetStream96/MinMaxHeap

Version 2.0.0

15 Feb 13:57
Compare
Choose a tag to compare
  • Implements IEnumerable for MinHeap and MaxHeap

This release includes breaking changes:

  • Indexers for MinHeap<TKey, TValue> and MaxHeap<TKey, TValue> now returns TValue instead of a KeyValuePair.

Add IReadOnlyDictionary interface

02 Dec 14:00
Compare
Choose a tag to compare

The following types now implements IReadOnlyDictionary<TKey, TValue>:

  • MinHeap<TKey, TValue>
  • MinHeap<TKey, TValue, TDictionary>
  • MaxHeap<TKey, TValue>
  • MaxHeap<TKey, TValue, TDictionary>

Bug fix

11 Jun 16:54
Compare
Choose a tag to compare

Fixed a bug which was fixed in MinHeapCustomDict.cs but missed in MinHeap.cs.

Bug fix

04 Jun 08:02
Compare
Choose a tag to compare
  • Fixed bugs in ExtractMin() and BubbleDown() methods.
  • Add indexer and ContainsKey().

First release

04 Jun 05:36
Compare
Choose a tag to compare
v1.0

Remove MSTest reference.