2023-11-16 02:14:14 +00:00
|
|
|
import { BinaryTreeNode } from '../data-structures';
|
|
|
|
import { BinaryTreeNodeNested, BiTreeDeleteResult, BTNCallback, BTNKey } from '../types';
|
2023-08-22 00:58:42 +00:00
|
|
|
|
2023-10-27 10:04:31 +00:00
|
|
|
export interface IBinaryTree<V = any, N extends BinaryTreeNode<V, N> = BinaryTreeNodeNested<V>> {
|
2023-10-30 12:27:08 +00:00
|
|
|
createNode(key: BTNKey, value?: N['value']): N;
|
2023-08-22 00:58:42 +00:00
|
|
|
|
2023-10-30 12:27:08 +00:00
|
|
|
add(keyOrNode: BTNKey | N | null, value?: N['value']): N | null | undefined;
|
2023-10-17 13:06:41 +00:00
|
|
|
|
2023-11-09 09:47:02 +00:00
|
|
|
delete<C extends BTNCallback<N>>(identifier: ReturnType<C> | null, callback: C): BiTreeDeleteResult<N>[];
|
2023-10-17 13:06:41 +00:00
|
|
|
}
|