Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 2 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.
(3 marks)
Exercise 2
In this exercise, you will add a method swapNodes to SinglyLinkedList class from week 2 lecture examples. This method should swap two nodes node1 and node2(and not just their contents) given references only to node1 and node2. The new method should check if node1 and node2 are the same node, etc. Write the main method to test the swapNodes method. Hint: You may need to traverse the list.
(4 marks)
Exercise 3
In this exercise you will add a clone() method to CircularlyLinkedList class from week 3 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Guide To Client Server Databases

Authors: Joe Salemi

2nd Edition

1562763105, 978-1562763107

More Books

Students also viewed these Databases questions