I have to write a function to find the number of nodes in a level of a first child - next sibling N-ary tree. My function is:
int nodesAtLevel(NTree root, int level) {
if (root == NULL) {
return 0;
}
if (level == 0) {
return 1;
}
return nodesAtLevel(root->firstChild, level - 1) +
nodesAtLevel(root->nextSibling, level - 1);
}
but it does not work. Can someone help me?
Right now, your code seems to only return 2. I believe this is what you are trying to do:
This should update the value after every recursion, unlike your current code.