Implements a priority queue for nodes based on a array with bucket lists.

Namespace: yWorks.yFiles.Algorithms.Util
Assembly: yWorks.yFilesWPF.Algorithms (in yWorks.yFilesWPF.Algorithms.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public class ArrayIntNodePQ : IIntNodePQ
Visual Basic
Public Class ArrayIntNodePQ _
	Implements IIntNodePQ

Remarks

Implements a priority queue for nodes based on a array with bucket lists. The priority values must be less than a maximal-value which must be provided to the constructor. Certain operations have time-complexity dependent on this value. The priority values of the nodes must be non-negative. While the priority queue is used, the graph must not change.

Inheritance Hierarchy

System..::..Object
  yWorks.yFiles.Algorithms.Util..::..ArrayIntNodePQ

See Also