mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 07:01:18 +08:00
parent
945e7c384e
commit
61f2d192f6
@ -3,9 +3,9 @@ import Queue from '../../../data-structures/queue/Queue';
|
||||
/**
|
||||
* @typedef {Object} Callbacks
|
||||
* @property {function(node: BinaryTreeNode, child: BinaryTreeNode): boolean} allowTraversal -
|
||||
* Determines whether DFS should traverse from the node to its child.
|
||||
* @property {function(node: BinaryTreeNode)} enterNode - Called when DFS enters the node.
|
||||
* @property {function(node: BinaryTreeNode)} leaveNode - Called when DFS leaves the node.
|
||||
* Determines whether BFS should traverse from the node to its child.
|
||||
* @property {function(node: BinaryTreeNode)} enterNode - Called when BFS enters the node.
|
||||
* @property {function(node: BinaryTreeNode)} leaveNode - Called when BFS leaves the node.
|
||||
*/
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user