我看到你对递归算法很了解,你能不能给我解释一下遍历二叉树的算法(C语言)

2024-12-25 15:25:09
推荐回答(1个)
回答1:

void visit(node *current)
{
if(current->left) // if left child exist
{
visit(current->left) ; //visit it
}

if(current->right) // if right child exist
{
visit(current->right) ; // visit it
}
}