Home /
Expert Answers /
Computer Science /
question-1-1-pts-given-this-snippet-of-code-identify-the-size-n-problem-based-on-the-four-step-pa563
(Solved): Question 1 1 pts
Given this snippet of code, identify the size-n problem (based on the four step ...
Question 1 1 pts
Given this snippet of code, identify the size-n problem (based on the four step approach discussed in class).
void deleteList(struct contact* node) {
if (node != NULL) {
deleteList(node->next);
free(node);
} else
return;
}