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

10 lines (9 loc) 378 B
import type { BSTNodeComparisonCallbackType, BSTNodeValueComparisonCallbackType } from "../../../Types"; /** * Compares two BST nodes based on their IDs. */ export declare const CompareNodes: BSTNodeComparisonCallbackType; /** * Compares a BST node with a given value based on the node's ID. */ export declare const CompareNodeWithValue: BSTNodeValueComparisonCallbackType;