Question
Write a method to append the content of a singly-linked list to the end of another singly-linked list. Your method should accept two parameters that
Write a method to append the content of a singly-linked list to the end of another singly-linked list. Your method should accept two parameters that are references to the beginning of two independent, non-empty (i.e. each list contains at least one node) lists, firstList and secondList. Your method should locate the end of the first list and append (attach) the second list to the end of the first list. Do not make a copy of the nodes on the second list, simply attach the second list to the end of the first list. Finally your method will return a reference to the first node of the combined list.
The method signature is: public static listNode appendList( listNode firstList, listNode secondList ) ;
Assume listNode is defined as follows:
class listNode
{
public int dataValue;
public listNode next;
};
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started