11 lines
272 B
C#
11 lines
272 B
C#
namespace Priority_Queue
|
|
{
|
|
internal class StablePriorityQueueNode : FastPriorityQueueNode
|
|
{
|
|
/// <summary>
|
|
/// Represents the order the node was inserted in
|
|
/// </summary>
|
|
public long InsertionIndex { get; internal set; }
|
|
}
|
|
}
|