Thursday, 14 July 2011

Inorder Traversasl.

void inorder(node *temp)
{
if(temp!=NULL)
{
inorder(temp->left);
printf("-> %d ",temp->data);
inorder(temp->right);
}
}

No comments:

Post a Comment