[int count(Node * list)
{
if (list == Null)
return 0;
else
return 1 + count(list->next);
}
Write a recurrence relation for the function count.]
imtiazm_71267 0 Newbie Poster
Rashakil Fol 978 Super Senior Demiposter Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.