0
/ 10
Consider the following class definition:
class Link{
Object data;
Link next;
}
List L has a reference p to the first node. Write code...
Consider the following class definition:
class Link{
Object data;
Link next;
}
List L has a reference p to the first node. Write code that returns a reference to the last node in L whose data is equals to a passed parameter. Make sure to account for edge cases!
Initial Setup | Final Configuration |
Examples:
lastNodeParam(Link.CreateList(1,2,3,3),3) -> Link.CreateList(3)
Your feedback will appear here when you check your answer.