
Explanation of Solution
Modified code for “StringLinkedList” class:
The modified code for “StringLinkedList” class is given below:
Filename: “ListNode.java”
//Define "ListNode" class
public class ListNode
{
/* This class is same as the code in Listing 12.4 of textbook */
}
Filename: “StringLinkedList.java”
/* This class is same as the code in Listing 12.5 of textbook */
//Define "StringLinkedList" class
public class StringLinkedList
{
private ListNode head;
/* Create constructor for "StringLinkedList" class*/
public StringLinkedList()
{
head = null;
}
/* Displays the data on the list.*/
public void showList()
{
ListNode position = head;
while (position != null)
{
System.out.println(position.getData());
position = position.getLink();
}
}
/* Returns the number of nodes on the list.*/
public int length()
{
int count = 0;
ListNode position = head;
while (position != null)
{
count++;
position = position.getLink();
}
return count;
}
/* Adds a node containing the data addData at the start of the list.*/
public void addANodeToStart(String addData)
{
head = new ListNode(addData, head);
}
/* Method definition for add a node at the end of list */
public void addANodeToEnd(String addData)
{
/* If head is null or empty, then */
if(head == null)
//Add node to the front
addANodeToStart(addData);
//Otherwise
else
{
/* Assign "s" to "head" */
ListNode s = head;
//Compute the last node in the list
while(s.getLink() != null)
{
s = s.getLink();
}
// Add in the node
ListNode c = new ListNode(addData, null);
s.setLink(c);
}
}
/* Deletes the first node on the list.*/
public void deleteHeadNode()
{
if (head != null)
head = head.getLink();
else
{
System.out.println("Deleting from an empty list.");
System.exit(0);
}
}
/* Method definition for deletes the last node on the list */
public void deleteLastNode()
{
/* If head is null or empty, then */
if (head == null)
{
//Display given message
System.out.println("Deleting from an empty list.");
System.exit(0);
}
/* If "head.getLink()" is null, then */
else if (head.getLink() == null)
{
/* Delete first node in the list by calling method "deleteHeadNode" */
deleteHeadNode();
}
//Otherwise
else
{
//Set "s" to "head"
ListNode s = head;
//Look for the node before the final node
while(s.getLink().getLink() != null)
s = s.getLink();
//Unlink the last node
s.setLink(null);
}
}
/* Sees whether target is on the list.*/
public boolean onList(String target)
{
return find(target) != null;
}
// Returns a reference to the first node containing the
// target data. If target is not on the list, returns null.
private ListNode find(String target)
{
boolean found = false;
ListNode position = head;
while ((position != null) && !found)
{
String dataAtPosition = position.getData();
if (dataAtPosition.equals(target))
found = true;
else
position = position.getLink();
}
return position;
}
}
Modified Filename: “StringLinkedListDemo.java”
//Define "StringLinkedListDemo" class
public class Main
{
//Define main function
public static void main(String[] args)
{
//Create object "list" from "StringLinkedList" class
StringLinkedList list = new StringLinkedList();
/* Add three node to list by calling the method "addANodeToStart" */
list...
Want to see the full answer?
Check out a sample textbook solution
Chapter 12 Solutions
Java: An Introduction to Problem Solving and Programming (7th Edition)
Additional Engineering Textbook Solutions
Starting Out with Programming Logic and Design (5th Edition) (What's New in Computer Science)
Modern Database Management
Starting Out with C++ from Control Structures to Objects (9th Edition)
Starting Out with Java: From Control Structures through Objects (7th Edition) (What's New in Computer Science)
Computer Science: An Overview (13th Edition) (What's New in Computer Science)
Elementary Surveying: An Introduction To Geomatics (15th Edition)
- 3. Write two nested loops to generate the following output. (Note: There is one space between each number, and any extra line shown is intentional.) 12 10 8 6 18 15 12 24 20 30 2 3 3 6 48 12 5 10 15 20 6 12 18 24 30arrow_forwardWrite in verilog coding languagearrow_forwardQ4. Consider the following two design alternatives. Walmart Walmart Store locartion 1 * capacity - Associate Name 1 id position Design Alternative "A" Store locartion 1 capacity Associate Name 1 * id position Design Alternative "B" a) Explain the semantic differences between the two designs, if any. b) Explain the differences in how each design alternative may be implemented in Java. c) which design alternative may require more storage requirement in your opinion, and why?arrow_forward
- Design a schematic for a compartmental model that includes compartments, flows, and parameters with their respective units, using Figure 1 as a guide. For each flow, determine whether it is best represented by a first-order transfer, a Michaelis-Menten saturable process, or a different method.arrow_forward9. Consider the diagram on the right. Using this diagram and the four following terms: (a) lonization Energy, (b) Electron Affinity, (c) Mulliken Electronegativity, and (d) Polarizability, label each arrow with the correct term (you can label the arrows with the corresponding letter for space purposes). Please provide labels for both species X and Y. lonization Limit b) Indicate why. Energy- Species X Species Y Which species (X or Y) has the highest electronegativity? Which has the largest polarizability? c)( 2) Consider BH3 (boron trihydride) and TIH3 (thallium trihydride). Which one is more polarizable and why? Which one would have stronger intermolecular forces and why?arrow_forwardb) 12. Consider XeO a) Draw the correct Lewis structure for this molecule. Calculate the steric number for XeO3 and based on your answer, what would be the molecular geometry it adopts? d) c) (1mark) According to VB theory, what is the hybridization for this molecule? Use the space below to explicitly show how you have arrived to your answer in part c. Clearly Sketch how hybridization occurs using electron orbital box diagrams and link central and terminal atoms.arrow_forward
- Consider CIFs and draw it's Lewis structure. What molecular geometry would you expect it 10. to have, and why? Comment on the distortion of the bond angles, if any is expected.arrow_forwardX Course Home P Pearson+ x + pearson.com/courses/13810469/menu/a2c41aca-b4d9-4809-ac2e-eef29897ce04 A Learning Goal: To understand the components and processes of a galvanic cell. A galvanic cell (or voltaic cell) produces electricity using a spontaneous redox reaction, such as the one shown here: Sn(s) + Cu (aq) Sn(aq) + Cue) The components of this reaction are separated by a salt bridge and connected with a wire forcing the electrons to travel across the wire, creating electricity Correct Previous Answers Standard reduction potentials for tin(II) and copper(II) The standard reduction potential for a substance indicates bow readily that substance gains electrons relative to other substances at standard conditions! Consider the following: Sn(aq) + 2e Sn(s). Cu(aq) + 2eCu(s), E red 0.140 V E red +0.337 V Sn Cu salt bridge Part B Sn²+(aq) Cu (ac The salt bridge is a U-shaped glass tube that is filled with a gel-like substance containing a salt. The salt bridge completes the circuit and…arrow_forward11. Consider IOF3, a) Draw optimized Lewis structures for possible isomers of IOFs. For each isomer, include all equivalent resonance contributors (if applicable) and all lone pairs and all non-zero formal charges Which isomer do you think is most likely? Why?arrow_forward
- x1+ 4809-ac2e-eef29897ce04 4 Part A A For a protein of 100 residues, estimate the entropy change per mole upon denaturation. Express your answer with the appropriate units. ΜΑ 0 ? X-10 хы J AS Value mol K ! You have already submilled this answer. Enter a new answer Noloredit lost Try again Submit Previous Answers Request Answer Part B Complete previous panis Part C Complete previous part(s) Braude Eneback Next > 5:08 PM 10/20/2025arrow_forwardPart B Correct glucose +P G6P + H2O AG 13.8 kJ/mol [G6PH₂O] Kea glucose P ΔΟΜ e Note: in the biochemical standard state, the activity of H2O is assigned a value of 1 G6P (1) (0.005) (0.005) e 00831x310 G6P 0.000025 xe 36 1.2 107 M This very low concentration of the desired product would be unfavorable for glycolysis In fact, the reaction is coupled to ATP hydrolysis to give the overall reaction ATP glucose What is AG for the coupled reaction? glucose-6-phosphate Express your answer to three significant figures and include the appropriate units, AG= Value kJ mol Submit Previous Answers Request Answer ADP Harrow_forwardexplain in detail thank youarrow_forward
C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageNp Ms Office 365/Excel 2016 I NtermedComputer ScienceISBN:9781337508841Author:CareyPublisher:Cengage


