You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
355 B

4 months ago
import { IAlgorithmCallbacks, GraphData } from './types';
/**
*
* @param data GraphData
* @param startNodeId ID
* @param originalCallbacks
*/
export default function depthFirstSearch(graphData: GraphData, startNodeId: string, callbacks?: IAlgorithmCallbacks, directed?: boolean): void;