Name: ____________________________________________________ Alpha: _____________________
Describe help received: _________________________________________________________________
LIST of type Node* with the values
depicted in the figure below:
The definition of struct Node is given above too. Write statements (mostly manipulating pointers) that perform the following.
|
|
Node is given as follows:
struct Node
{
int data;
Node* next;
};
int sum(Node* L)
{
}

4 53 42 87
void rprint(Node* L)
{
}