Ejemplo n.º 1
0
 /// <summary>
 /// Insert the key and value.
 /// </summary>
 /// <exception cref="ArgumentNullException"></exception>
 /// <exception cref="ArgumentException"></exception>
 public void Add(TKey key, TValue val)
 {
     minHeap.Add(key, val);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Insert the value.
 /// </summary>
 /// <exception cref="ArgumentNullException"></exception>
 /// <exception cref="ArgumentException"></exception>
 public void Add(T item) => minHeap.Add(item);