Class FibonacciHeapCell<TPriority, TValue>
Represents a cell that stores a value with its priority.
Inheritance
System.Object
FibonacciHeapCell<TPriority, TValue>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Collections
Assembly: QuikGraph.dll
Syntax
[Serializable]
public sealed class FibonacciHeapCell<TPriority, TValue>
Type Parameters
Name | Description |
---|---|
TPriority | Priority type. |
TValue | Value type. |
Properties
| Improve this Doc View SourceChildren
Children cells.
Declaration
public FibonacciHeapLinkedList<TPriority, TValue> Children { get; }
Property Value
Type | Description |
---|---|
FibonacciHeapLinkedList<TPriority, TValue> |
Degree
Determines the depth of a node.
Declaration
public int Degree { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Marked
Determines if a node has had a child cut from it before.
Declaration
public bool Marked { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Next
Next cell.
Declaration
public FibonacciHeapCell<TPriority, TValue> Next { get; }
Property Value
Type | Description |
---|---|
FibonacciHeapCell<TPriority, TValue> |
Parent
Parent cell.
Declaration
public FibonacciHeapCell<TPriority, TValue> Parent { get; }
Property Value
Type | Description |
---|---|
FibonacciHeapCell<TPriority, TValue> |
Previous
Previous cell.
Declaration
public FibonacciHeapCell<TPriority, TValue> Previous { get; }
Property Value
Type | Description |
---|---|
FibonacciHeapCell<TPriority, TValue> |
Priority
Gets or sets the value priority.
Declaration
public TPriority Priority { get; }
Property Value
Type | Description |
---|---|
TPriority |
Removed
Gets or sets the state removed of a cell.
Declaration
public bool Removed { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Value
Gets or sets the value.
Declaration
public TValue Value { get; }
Property Value
Type | Description |
---|---|
TValue |
Methods
| Improve this Doc View SourceToKeyValuePair()
Converts this cell to a System.Collections.Generic.KeyValuePair{TPriority,TValue}.
Declaration
public KeyValuePair<TPriority, TValue> ToKeyValuePair()
Returns
Type | Description |
---|---|
System.Collections.Generic.KeyValuePair<TPriority, TValue> | A corresponding System.Collections.Generic.KeyValuePair{TPriority,TValue}. |