Question: Instructions: This is an individual assignment. Answers should be your own work You are expected to code this through the requirements and design, then writing

 Instructions: This is an individual assignment. Answers should be your own

work You are expected to code this through the requirements and design,

Instructions: This is an individual assignment. Answers should be your own work You are expected to code this through the requirements and design, then writing the code. yourself from scratch by thinking Introduction: This project creates a custom linked list structure. It serves as an exercise in working with linked sts and nodes. Overview Suppose the names "Bob", "Dan", and "Ben", are added, the result is head-->l B |-- Ben l-- Bobl-- D l-- Dan If the names "Deb" and "Sarah" are added, it looks like this: >| Ben |-->| Bob |-->| D >ISarah|- If "Deb" and "Sarah" are deleted, the list should look like the first list again. Details: Create a Java class called NameList (not generic) that stores names and implements the structure shown above. Note that the names are kept in sorted order. Letter nodes are always uppercase. Lowercase names will follow uppercase names in normal sorted order. You may *not* use Java's Linkedlist class. You should cre ate your own nodes and link them together as shown in the illustration. Your class should support the following methods. 20 points new name. Names must be at least 2 characters long. Adds the letter node if not already present. 20 points remove - Removes a name. If the name is the last one for a letter, the letter node should also be removed. 20 points removeletter Removes a letter and all names for that letter. 20 points find Finds a name by traversing the nodes. 10 points toString - Returns a string of the list formatted as shown below using the first list above as an example: Ben Bob Dan 10 points main Demonstrates the methods of your Namelist class

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!