This is a largish problem for a whiteboard, the candidate who gets this question should talk it out, put some very high level pseudocode on the whiteboard to show you understand it before doing any "coding".I d
Pseudocode:struct BT{ // tree node type int data; //value struct BT *left; //pointer to left child struct BT *right; //pointer to right child }; int noofleafnodes(struct BT *root){ // root of the tree // BT refers to node of tree (datatype for the node); struct BT *temp;...