In java
The following is a class definition of a linked list Node:class Node{int info;Node next;}Assume that head references a linked list and stores in order, the int values 5, 7 and 9. Show the instructions needed to delete the Node with 5 so that head would reference the list 7 and 9.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here