Question: In this exercise, you will use the DoublyLinkedList implementation of the textbook ( week 2 lecture examples. Write a method for concatenating two doubly linked
In this exercise, you will use the DoublyLinkedList implementation of the textbook week lecture examples. Write a method for concatenating two doubly linked lists L and M with header and trailer sentinel nodes, into a single list L Write a main method to test the new method. Hint: Connect the end of L into the beginning of M
marks
Exercise
In this exercise, you will add a method swapNodes to SinglyLinkedList class from week lecture examples. This method should swap two nodes node and nodeand not just their contents given references only to node and node The new method should check if node and node are the same node, etc. Write the main method to test the swapNodes method. Hint: You may need to traverse the list.
marks
Exercise
In this exercise you will add a clone method to CircularlyLinkedList class from week lecture examples. Write a main method to test the new method. Hint: See the implementation of clone method in SinglyLinkedList class, Make sure to properly link the new chain of nodes.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
