Question: 3. Concatenate Two Linked Lists. Create a method to concatenate two linked lists. Given lists l1 = (2,3,1) and 12 = (4,5), after return from

3. Concatenate Two Linked Lists. Create a method to concatenate two linked lists. Given lists l1 = (2,3,1) and 12 = (4,5), after return from concatenate(11,12) the list l, should be like l1 = (2,3,1,4,5). Your function should not modify 12 and should not directly link nodes from li to la (i.e. the nodes inserted into l, should be copies of the nodes from 12.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
