@euriklis/ds-architect
Version:
`@euriklis/ds-architect` is a modular and extensible library that provides a rich ecosystem for graph and network-based data structures. Designed with both academic rigor and practical application in mind, this library offers powerful graph algorithms and
5 lines (4 loc) • 339 B
TypeScript
import type { BST } from "..";
import type { BSTDataNode } from "../../DataNode";
import type { Queue } from "../../Queue";
export declare const BSTLoop: <T extends any, AbstractBSTDataNode extends BSTDataNode>(callback: (node: AbstractBSTDataNode, bst: BST<T>) => boolean, queue: Queue<AbstractBSTDataNode | null>, tree: BST<T>) => void;