Inorder traversal of binary search tree by R4R Team

In-order traversal:
In-order traversal of Binary search tree is follow the pattern "LEFT ROOT RIGHT"
-That means, we can evalute left portion then root then right portion.

Following is the function that are used to traverse the Binary search Tree in In-order:

void traverse(struct node *root)
{
if(root!=NULL)
{
traverse(root->leftchild);
printf("%d ",root->data);
traverse(root->rightchild);
}
}

Note:
In-order traversal of BST are always in increasing order




Leave a Comment:
Search
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!