File intlist.java contains definitions for a linked list of integers

CSE 1302 Lab 9

Linked Lists – do Part A and Part B

           

Add the following cases:

            case 5: list.length()

            case 6 : SOP ( list);

            case 7: list.removeLast()

            case 8: list.replace(oldVal,newVal)

            case 9: list.printRec()

            case 10: list.printRecBkw()

 

Turn in final source and output.  Use the following data:

            First: try each of the methods you wrote with an empty list.

            Second: add 1 element to the list and try each of your methods again.

            Then using the following codes:

                        1: add 66 and 32 to front

                        2: add 55 and 24 to end

                        9: print list (with recursive method)

                        3: remove first

                        4: print list

                        10: print list backwards (with recursive method)

                        5: print length of list

                        6: print the list again with case 6 to test toString() method

                        7: remove last

                        1: add 66 again

                        4: print list

                        8: replace 66 with 999

                        4: print list

                        0: quit

 

Part A. A Linked List of Integers

File IntList.java contains definitions for a linked list of integers. The class contains an inner class IntNode that holds information for a single node in the list (a node has a value and a reference to the next node) and the following IntList methods:

public IntList()—constructor; creates an empty list of integers

public void addToFront(int val)—takes an integer and puts it on the front of the list

public void addToEnd(int val)—takes an integer and puts it on the end of the list

public void removeFirst()—removes the first value from the list

public void print()—prints the elements in the list from first to last

 

File IntListTest.java contains a driver that allows you to experiment with these methods. Save both of these files to your directory, compile and run IntListTest, and play around with it to see how it works. Then add the following methods to the IntList class. For each, add an option to the driver to test it.

 

1.         public int length()—returns the number of elements in the list

2.         public String toString()—returns a String containing the print value of the list.

3.         public void removeLast()—removes the last element of the list. If the list is empty, does nothing.

4.         public void replace(int oldVal, int newVal)—replaces all occurrences of oldVal in the list with newVal. Note that you can still use the old nodes; just replace the values stored in those nodes.

 

 

Calculate Your Essay Price
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more