Question: public class node{ private node next // null if this is the last link private int value; public Node(node n, int v){ next= n; value=
public class node{
private node next // null if this is the last link
private int value;
public Node(node n, int v){
next= n;
value= v;
}}
DO NOT USE LOOPS OR CREATE ANY MORE METHODS(OTHER THAN THOSE SPECIFIED),class or inteface variables
write a recursive class method delete that takes an int and node and returns a Node. The method deletes the first occurrence of a given integer from the list and returns the resulting list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
