Question: create a new method called removeRequested Node(, int n). This method will have any number of parameters, but it must have one integer-type parameter.
create a new method called "removeRequested Node(, int n)". This method will have any number of parameters, but it must have one integer-type parameter. If the user wants to the 4th node from the LinkedList, n will be 4. The very first node (head) will be the Oth node. If LinkedList is not big enough to remove the requested node, don't take any actions on the linked list. Example #1 Before: 40-->20-->10- ->30-->50-->60 After removeRequested Node(, int 4) call: 10-->20-->30-->40-->60
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
