用C语言写一个二叉树的前序遍历
时间: 2023-03-11 18:30:37 浏览: 110
二叉树前序遍历
我可以提供一个简单的C语言代码来实现二叉树的前序遍历:void preOrder(struct node *root)
{
if (root == NULL)
return;
/* 访问根节点 */
printf("%d ", root->data);
/* 遍历左子树 */
preOrder(root->left);
/* 遍历右子树 */
preOrder(root->right);
}
阅读全文