Knowee
Questions
Features
Study Tools

#include<stdio.h>#include<stdlib.h>typedef struct node{ struct node * left; int data; struct node * right;}NODE;… scanf("%d",&num); if( num == -1) break; createBst(&root , num); } printMinimumMaximum(root);return 0;}

Question

#include<stdio.h>#include<stdlib.h>typedef struct node{ struct node * left; int data; struct node * right;}NODE;… scanf("%d",&num); if( num == -1) break; createBst(&root , num); } printMinimumMaximum(root);return 0;}

🧐 Not the exact question you are looking for?Go ask a question

Solution

It seems like you've pasted a part of a C program code related to Binary Search Tree (BST) but it's incomplete and not properly formatted. It's hard to understand what you're asking without a specific question. Could you please provide more details or clarify your question?

Similar Questions

0/0

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.