| 13 | ) |
| 14 | |
| 15 | type Node[T constraints.Ordered] interface { |
| 16 | Key() T |
| 17 | Parent() Node[T] |
| 18 | Left() Node[T] |
| 19 | Right() Node[T] |
| 20 | } |
| 21 | |
| 22 | // The following is a collection of helper functions for BinarySearch, AVL and RB. |
| 23 |
no outgoing calls
no test coverage detected