Question: . , write a Java programs that will implement the queastions , Your programs should be interactive enough to allow for testing the code that
. , write a Java programs that will implement the queastions , Your programs should be interactive enough to allow for testing the code that answers the questions. allow the user (or the grader) to be able to populate the linked lists that are implemented based on the simple Node implementation then the user should get a result saying yes they are equal or not based on the results of the methods.
Question 5. Given only the following node declaration: public class Node ( public int value; public Node next; public Node(int v, Node n) f valuev; next - n;} Write a method that takes in two heads of two linked and compares the two lists according to the following: return false if the number of elements of the lists are different, otherwise go to b. return true if the two lists have the same exact elements in the same exact order, false otherwise. a. b. You cannot use any method calls from the LinkedList class in assignment 3. Complete the following code (assume no dummy node): public boolean areEaual(Node head1, Node head2) f Node cursor1- head1, cursor2 head2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
