Beispiel #1
0
 public static void Print <TNode, TKey, TValue>([NotNull] this PairingHeap <TNode, TKey, TValue> thisValue)
     where TNode : PairingNode <TNode, TKey, TValue>
 {
     Console.WriteLine();
     Console.WriteLine("Count: " + thisValue.Count);
     Console.WriteLine();
     thisValue.WriteTo(Console.Out);
 }