Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 399 Weeks Ago, 1 Day Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Computer Science Posted 23 Sep 2017 My Price 5.00

studying recursion

You must assign the grades for a programming class. The class is studying recursion, and students have been given this simple assignment: Write a recursive function Sum Squares that takes a pointer to a linked list of integer elements and returns the sum of the squares of the elements.

Example:

Sum Squares(listPtr) yields (5 * 5) + (2 * 2) + (3 * 3) + (1 * 1) = 39

Assume that the list is not empty.

You have received quite a variety of solutions. Grade the functions that follow, marking errors where you see them.

a. int SumSquares(NodeType* list)

{

return 0;

if (list != NULL)

return (list->info*list->info) + SumSquares(list->next));

}

b. int SumSquares(NodeType* list)

{

int sum = 0;

while (list != NULL)

{

sum = list->info + sum;

list = list->next;

}

return sum;

}

c. int SumSquares(NodeType* list)

{

if (list == NULL)

return 0;

else

return list->info*list->info + SumSquares(list->next);

}

d. int SumSquares(NodeType* list)

{

if (list->next == NULL)

return list->info*list->info;

else

return list->info*list->info + SumSquares(list->next);

}

e. int SumSquares(NodeType* list)

{

if (list == NULL)

return 0;

else

return (SumSquares(list->next) * SumSquares(list->next));

}

Answers

(5)
Status NEW Posted 23 Sep 2017 08:09 AM My Price 5.00

Hel-----------lo -----------Sir-----------/Ma-----------dam-----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------and----------- ac-----------qui-----------sit-----------ion----------- of----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n.P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)