Skip to content

Latest commit

 

History

History
56 lines (34 loc) · 1.19 KB

priority_queue.stablepriorityqueuenode.md

File metadata and controls

56 lines (34 loc) · 1.19 KB

StablePriorityQueueNode

Namespace: Priority_Queue

public class StablePriorityQueueNode : FastPriorityQueueNode

Inheritance ObjectFastPriorityQueueNodeStablePriorityQueueNode

Properties

InsertionIndex

Represents the order the node was inserted in

public long InsertionIndex { get; internal set; }

Property Value

Int64

Priority

The Priority to insert this node at. Cannot be manually edited - see queue.Enqueue() and queue.UpdatePriority() instead

public float Priority { get; protected internal set; }

Property Value

Single

QueueIndex

Represents the current position in the queue

public int QueueIndex { get; internal set; }

Property Value

Int32

Constructors

StablePriorityQueueNode()

public StablePriorityQueueNode()