0
/ 1.0
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 first node in the list containing data that equals to a passed parameter (otherwise return null) . Make sure to account for edge cases!
Initial Setup | Final Configuration |
Examples:
refernceValueNode(Link.CreateList(1,2,3,4),3) -> Link.CreateList(3,4)
Your feedback will appear here when you check your answer.