Gets the right child. @param nd current node @return right node
(final int nd)
| 212 | * @return right node |
| 213 | */ |
| 214 | private int right(final int nd) { |
| 215 | return tree.get((nd << 1) + nd + 1); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Gets the parent node. |
no test coverage detected