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

What is reduction to sorting method?

0 Answers  


List some applications of tree-data structure?

0 Answers  


Is array a linked list?

0 Answers  


What is a subtree in data structures?

0 Answers  


What are the 4 types of data?

0 Answers  


How arraylist increase its size?

0 Answers  


Can treeset have duplicates?

0 Answers  


Differentiate between an array and an arraylist.

0 Answers  


What is the use of data structure?

0 Answers  


Is quicksort a stable sorting algorithm?

0 Answers  


Define a right-skewed binary tree?

0 Answers  


Explain the Linked List

0 Answers   Tech Mahindra,


Categories