Slip 14
Slip 14
ANS:-
#include <stdio.h>
int main() {
int vertices, edges;
return 0;
}
Q.2) Write a program which uses binary search tree library and counts the total
nodes in the tree. int count(T)-returns the total number of nodes from BST
ANS
#include <stdio.h>
#include <stdlib.h>
int main() {
Node* root = NULL;
int data;
return 0;
}