returns the value of the smallest key from this heap. @return value of the smallest key
()
| 69 | * @return value of the smallest key |
| 70 | */ |
| 71 | @SuppressWarnings("unchecked") |
| 72 | private V minValue() { |
| 73 | return (V) vals[1]; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Size of this heap. |