Question: Question: Write a recursive function to determine how many nodes in a Binary Search Tree have an even depth. Looking for feedback/corrections on the code

Question: Write a recursive function to determine how many nodes in a Binary Search Tree have an even depth.

Looking for feedback/corrections on the code I came up with below as we are not allowed to use an IDE on this one. Is it correct?

public int numEvenDepth() {

// tree is created somehow here

int depth = 1;

return numEvenDepthHelper(root, depth); }

public int numEvenDepthHelper(Node root, int depth) {

if(root == null) return 0;

int count = 0;

if(depth % 2 != 0) {

return count + numEvenDepthHelper(root.left, depth + 1);

return count + numEven Depth Helper(root.right, depth + 1); }

count++;

return count + numEvenDepthHelper(root.left, depth + 1);

return count + numEven Depth Helper(root.right, depth + 1);

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!