Implementation of Binary Tree
Implementation of Binary Tree
PALANATI NEHA
20BCB7006
#include<stdlib.h>
#include<stdio.h>
}
void print_inorder(node * tree)
{ if
(tree)
{
print_inorder(tree->left);
printf("%d\n",tree->data);
print_inorder(tree->right);
}
}
void main()
{
node *root;
node *tmp;
//int i;