UNPKG

@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

4 lines (3 loc) 257 B
import type { BST } from ".."; import type { BSTDataNode } from "../../DataNode"; export declare const ShiftNodes: <T extends unknown, AbstractBSTDataNode extends BSTDataNode<T>>(tree: BST<T>, u: AbstractBSTDataNode, v: AbstractBSTDataNode | null) => void;