Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Participation In this activity you must work collaboratively with a friend to develop correct code for the programming tasks set out below. They are related

Participation In this activity you must work collaboratively with a friend to develop correct code for the programming tasks set out below. They are related to the linked list class discussed in lectures.

One person must take on the role of programmer, and the other the role of tester. Swap roles so that everyone gains the experience both as a tester and a programmer.

In the role of programmer you must look at the specification and write a method in the linked list class that implements it. In the role of tester, without writing the code (!) you must write a set of JUnit tests that a correctly-written program would pass.

Make sure that the testers and programmers do not collaborate whilst writing the code and tests, but when both teams are done try out the tests on the code. Look at each others work and comment, write the following questions: Did the code pass the tester's tests? Did the tests cover all the main cases?

Write a program that takes two linked lists (l1 and l2) and interleaves them so that the returned list is the first node from l1, followed by the rst node from l2, then the second node from l1 followed by the second node from l2 etc. If any nodes are left after the interleaving then they should be appended.

public SLList interleave (SLList l1, SLList l2);

Write a program that takes a linked list l1 of integers, and an integer x and removes all the instances of x from the list, leaving the remaining nodes connected in the same relative order as they were before.

11

public SLList removeALL (SLList l1, int x);

* This is based on the linked list class provided in Data Structures and Algorithms in * Java by Adam Drozdek. * The basic infrastructure has been extended by Annabelle McIver. */

package lectures;

// A node in an integer singly linked list class

//************************ SLLNode.java *******************************

class SLLNode { public Object info; // This is the data public SLLNode next; // this is the address of the next node public SLLNode() { // Here's how we construct an empty list. next = null; } public SLLNode(Object el) { info = el; next = null; } public SLLNode(Object el, SLLNode ptr) { info = el; next = ptr; } }

/*********************** SLList.java *************************** * generic singly linked list class with head only */

class SLList { protected SLLNode head = null; public SLList() { } public void setToNull() { head = null; } public boolean isEmpty() { return head == null; } public Object first() { return head.info; } public SLLNode head() { return head; } public void printAll() { for (SLLNode tmp = head; tmp != null; tmp = tmp.next) System.out.print(tmp.info.toString()); } public void add(Object el) { head= new SLLNode(el,head); } public Object find(Object el) { SLLNode tmp = head; for ( ; tmp != null && !el.equals(tmp.info); tmp = tmp.next); if (tmp == null) return null; else return tmp.info; } public Object deleteHead() { // remove the head and return its info; Object el = head.info; head = head.next; return el; } public void delete(Object el) { // find and remove el; if (head != null) // if non-empty list; if (el.equals(head.info)) // if head needs to be removed; head = head.next; else { SLLNode pred = head, tmp = head.next; for ( ; tmp != null && !(tmp.info.equals(el)); pred = pred.next, tmp = tmp.next); if (tmp != null) // if found pred.next = tmp.next; } } public void join (SLList l2) { // Precondition: none // Postcondition: Links l2 to the end of the current list // The performance of this depends on the length of the current list, but not l2. How do we test this? SLList temp= this; if (temp.isEmpty()) { this.head= l2.head;} // Is the current list empty? else { // If not, find the tail of the current list and join it to the top of l2. SLLNode t= this.head; for ( ; t.next!=null; t= t.next){}// Invariant: t!=null t.next= l2.head; } } public void llreverse() { // Precondition: none // Postcondition: Reverses the items in the current list if ((head != null)) { SLList x= new SLList(); Object y= deleteHead(); // removes head from current list, stores the info in y x.add(y); llreverse(); // recursive call, but to a smaller instance. join(x); } } public void iterativeReverse() { // This just uses a single pass through the list. // Precondition: none // Postcondition: Reverses the items in the current list SLList y= new SLList(); Object n; for (SLLNode x= head; x != null; x= x.next) { n= deleteHead(); y.add(n); } head= y.head; }

public void insert(Object p, Object q){ // Precondition: p and q are not null // Postcondition: Insert object p after object q, // or at the end of the current list if q does not appear in the list SLLNode y= new SLLNode(p);// make a new node to insert; SLLNode x= head; if (x == null) {head= y;} else{ for (; x.next != null && !x.info.equals(q); x= x.next){}// First find q, if it's there. // On termination x points to the last node, or to a node which has info equal to q if (x.next == null) {x.next= y;}// just add y to the end. else { y.next= x.next; x.next= y; } } } public boolean equals(SLList p) { // Precondition: p is not null // Postcondition: Returns true iff the contents of the current list are the same // and in the same order as the input list p SLLNode x= head; SLLNode y= p.head; for(; y!=null && x!=null; y= y.next, x=x.next) { if (!x.info.equals(y.info)){ return false; } } if (y==null && x==null) return true; else { return false; } } }

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

Step: 3

blur-text-image

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

DNA Databases

Authors: Stefan Kiesbye

1st Edition

0737758910, 978-0737758917

More Books

Students also viewed these Databases questions

Question

Differentiate between a secured bond and an unsecured bond.

Answered: 1 week ago