(Node<K, V> x)
| 1409 | } |
| 1410 | |
| 1411 | static <K,V> Node<K, V> minimum(Node<K, V> x) { |
| 1412 | if (x == null) { |
| 1413 | return null; |
| 1414 | } |
| 1415 | while (x.left != null) { |
| 1416 | x = x.left; |
| 1417 | } |
| 1418 | return x; |
| 1419 | } |
| 1420 | |
| 1421 | static <K,V> Node<K, V> maximum(Node<K, V> x) { |
| 1422 | if (x == null) { |
no outgoing calls
no test coverage detected