Gets the left child. @param nd current node @return left node
(final int nd)
| 203 | * @return left node |
| 204 | */ |
| 205 | private int left(final int nd) { |
| 206 | return tree.get((nd << 1) + nd); |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Gets the right child. |
no test coverage detected