Class BinaryHeap<T>
A binary heap, useful for sorting data and priority queues.
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public class BinaryHeap<T> : ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name | Description |
---|---|
T | The element type |
Constructors
| Edit this page View SourceBinaryHeap()
Creates a new binary heap
Declaration
public BinaryHeap()
BinaryHeap(IComparer<T>)
Creates a new binary heap.
Declaration
public BinaryHeap(IComparer<T> comparer)
Parameters
Type | Name | Description |
---|---|---|
IComparer<T> | comparer | The comparer used to compare the items |
Properties
| Edit this page View SourceCapacity
Gets or sets the capacity of the heap.
Declaration
public int Capacity { get; set; }
Property Value
Type | Description |
---|---|
int |
Count
Gets the number of values in the heap.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
int |
IsReadOnly
Gets whether or not the binary heap is readonly.
Declaration
public bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceAdd(T)
Adds a key and value to the heap.
Declaration
public void Add(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to add to the heap. |
Clear()
Removes all items from the heap.
Declaration
public void Clear()
Contains(T)
Checks to see if the binary heap contains the specified item.
Declaration
public bool Contains(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to search the binary heap for. |
Returns
Type | Description |
---|---|
bool | A boolean, true if binary heap contains item. |
Copy()
Creates a new instance of an identical binary heap.
Declaration
public BinaryHeap<T> Copy()
Returns
Type | Description |
---|---|
BinaryHeap<T> | A BinaryHeap. |
CopyTo(T[], int)
Copies the binary heap to an array at the specified index.
Declaration
public void CopyTo(T[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
T[] | array | One dimensional array that is the destination of the copied elements. |
int | arrayIndex | The zero-based index at which copying begins. |
GetEnumerator()
Gets an enumerator for the binary heap.
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<T> | An IEnumerator of type T. |
Peek()
Gets the first value in the heap without removing it.
Declaration
public T Peek()
Returns
Type | Description |
---|---|
T | The lowest value of type TValue. |
Remove()
Removes and returns the first item in the heap.
Declaration
public T Remove()
Returns
Type | Description |
---|---|
T | The next value in the heap. |
Remove(T)
Removes an item from the binary heap. This utilizes the type T's Comparer and will not remove duplicates.
Declaration
public bool Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to be removed. |
Returns
Type | Description |
---|---|
bool | Boolean true if the item was removed. |