Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain in details how you would react to an unexpected incident when your supervisor or manager is not around to give instructions?

7267


What are the similarities between education and economics?

1


list three of your most important accomlishment

2178


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3217


What is a schema in sap hana and also explain its types?

67






What is named sql query in hibernate?

187


Why use identity in sql server?

543


Explain catalyst query optimizer in Apache Spark?

192


what are the different application servers and web servers supporting j2ee technologys?

458


What is ubuntu used for?

350


how to view the contract-information in install base?

1886


How to define array in mongoose schema?

1


How to create a module in node js?

205


What is java english?

468


How to create dbo table in sql server?

490