Push a chain of Node's into the AVL Tree
(keys ...T)
| 65 | |
| 66 | // Push a chain of Node's into the AVL Tree |
| 67 | func (avl *AVL[T]) Push(keys ...T) { |
| 68 | for _, k := range keys { |
| 69 | avl.Root = avl.pushHelper(avl.Root, k) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | // Delete a Node from the AVL Tree |
| 74 | func (avl *AVL[T]) Delete(key T) bool { |
nothing calls this directly
no test coverage detected