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

5 lines (4 loc) 465 B
import type { DynamicStack } from "../../Stack"; import type { BSTDataNode } from "../../DataNode"; export declare const IsNodeExactlySame: <AbstractBSTDataNode extends BSTDataNode>(S1: DynamicStack<AbstractBSTDataNode | null>, S2: DynamicStack<AbstractBSTDataNode | null>) => boolean; export declare const IsNodeSame: <AbstractBSTDataNode extends BSTDataNode>(S1: DynamicStack<AbstractBSTDataNode | null>, S2: DynamicStack<AbstractBSTDataNode | null>) => boolean;