Exemplo n.º 1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="PriorityQueue{T}" /> class.
 /// </summary>
 public PriorityQueue()
 {
     this.QuequeImplementation = new DefaultPriorityQueque <T>(0);
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="PriorityQueueContainer{T}" /> class.
 /// </summary>
 public PriorityQueueContainer()
 {
     this.PriorityQueque = new PriorityQueque <T>(0);
 }