Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How will inorder, preorder and postorder traversals print
the elements of a tree?

Answers were Sorted based on User's Feedback



How will inorder, preorder and postorder traversals print the elements of a tree?..

Answer / narendra sharma

struct tree
{
int data;
struct NODE, *left, *right;
}
typedef struct node;

void inorder(node * tree)
{
if(root!=null)
inorder(tree->leftchild);
printf("%d",tree->data);
inorder(tree->rightchild);
}

void preorder(node * tree)
{
if(root!=null)
printf("%d",tree->data);
preorder(((tree->leftchild);
preorder(((tree->rightchild);
}

void postorder(node * tree)
{
if(root!=null)
postorder(tree->leftchild);
postorder(tree->rightchild);
printf("%d",tree->data);
}

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Data Structures Interview Questions

Define internal nodes?

0 Answers  


Which data structures are applied when dealing with a recursive function?

0 Answers  


What is the difference between hashmap and linkedhashmap?

0 Answers  


Does stringutils isempty check for null?

0 Answers  


What is the complexity of arraylist?

0 Answers  


Can arraylist be null?

0 Answers  


Can we remove element from arraylist while iterating?

0 Answers  


Are linked lists useful?

0 Answers  


What are the drawbacks of array implementation of queue?

0 Answers  


What is the method to find the complexity of an algorithm?

0 Answers  


Which language is best to learn data structures?

0 Answers  


What is an externalizable interface?

0 Answers  


Categories