Java: Introduction to Problem Solving and Programming
Java: Introduction to Problem Solving and Programming
7th Edition
ISBN: 9780133834604
Author: SAVITCH
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 12, Problem 14E

Explanation of Solution

Creating the class “ListDemoTestOne.java”:

  • Define “ListDemoTestOne” class.
    • Define main function.
      • Create object “list1” from “StringLinkedListWithIterator” class.
      • Add node a, b, c and d to “list1” by calling the method “addANodeToStart”.
      • Display the list by calling the method “showList”.
      • Sets the iterator is at the front of the list by calling the method “resetIteration”.
      • Finds the data at the current node by calling the method “getDataAtCurrent”.
      • Deletes current node by calling the method “deleteCurrentNode”.
      • Performs “for” loop. It is for iterator to next node by calling the method “goToNext”.
      • Insert “nodeData” after the current node by calling the method “insertNodeAfterCurrent”.
      • Display the list by calling the method “showList”.

Program:

Filename: “StringLinkedListWithIterator.java”

//Define "StringLinkedListWithIterator" class

public class StringLinkedListWithIterator

{

  /* It is same as "Listing 12.9" */

}

Filename: “ListDemoTestOne.java”

//Import required package

import java.io.*;

import java.util.*;

//Define "ListDemoTestOne" class

public class ListDemoTestOne

{

  //Define main function

  public static void main(String[] args)

  {

//Create object "list1" from "StringLinkedListWithIterator" class

StringLinkedListWithIterator list1 = new StringLinkedListWithIterator();

  //Display statement

System...

Blurred answer
Students have asked these similar questions
Implement a lastIndex method for the LinkedIntList class you worked on for HW4.  This method takes an int argument and returns the largest index such that the int argument appears at that index in the list.  If the int argument does not appear in the list, then -1 is returned.  For example if the list example contained the numbers [4, -1, 2, 7, -1, 3] in that order, then example.lastIndex(-1) should return 4 and example.lastIndex(5) should return -1. In the text area below, write the definition of the lastIndex method.  (In other words, write the code that should replace the //TODO comment.)  Your code cannot call any methods. public class LinkedIntList {       private class Node {         private int item;         private Node next;           public Node() {}           public Node(int number, Node nextNode) {             item = number;             next = nextNode;         }     }       private Node first; // first node of the list       public LinkedIntList() {         first = null;…
Write the method filterBySize().* * Given an ArrayList of String, return a new list where only * strings of the given length are retained.* * Examples:* filterBySize(["a", "bb", "b", "ccc"], 1) returns ["a", "b"]* filterBySize(["a", "bb", "b", "ccc"], 3) returns ["ccc"]* filterBySize(["a", "bb", "b", "ccc"], 4) returns []
Implement unique method that takes an ArrayList as input and returns an ArrayList withexactly a single occurrence of each element from the input list. For example, if the input listcontains 5, 6, 7, 6, 3, 5, 5, 4 then the output list should have 5, 6, 7, 3, 4.Note: (1) You may assume that the ArrayList has a specific type of elements in it. In the class, we assumedit to have String type values. (2) You may only work with ArrayList(s).

Chapter 12 Solutions

Java: Introduction to Problem Solving and Programming

Ch. 12.1 - Prob. 12STQCh. 12.2 - Prob. 13STQCh. 12.2 - Prob. 14STQCh. 12.2 - Prob. 15STQCh. 12.2 - Prob. 16STQCh. 12.3 - Prob. 17STQCh. 12.3 - Prob. 18STQCh. 12.3 - Prob. 19STQCh. 12.3 - Write a definition of a method isEmpty for the...Ch. 12.3 - Prob. 21STQCh. 12.3 - Prob. 22STQCh. 12.3 - Prob. 23STQCh. 12.3 - Prob. 24STQCh. 12.3 - Redefine the method getDataAtCurrent in...Ch. 12.3 - Repeat Question 25 for the method...Ch. 12.3 - Repeat Question 25 for the method...Ch. 12.3 - Repeat Question 25 for the method...Ch. 12.4 - Revise the definition of the class ListNode in...Ch. 12.4 - Prob. 30STQCh. 12 - Repeat Exercise 2 in Chapter 7, but use an...Ch. 12 - Prob. 2ECh. 12 - Prob. 3ECh. 12 - Repeat Exercises 6 and 7 in Chapter 7, but use an...Ch. 12 - Write a static method removeDuplicates...Ch. 12 - Write a static method...Ch. 12 - Write a program that will read sentences from a...Ch. 12 - Repeat Exercise 12 in Chapter 7, but use an...Ch. 12 - Write a program that will read a text file that...Ch. 12 - Revise the class StringLinkedList in Listing 12.5...Ch. 12 - Prob. 12ECh. 12 - Write some code that will use an iterator to...Ch. 12 - Prob. 14ECh. 12 - Write some code that will use an iterator to...Ch. 12 - Prob. 17ECh. 12 - Revise the method selectionSort within the class...Ch. 12 - Repeat the previous practice program, but instead...Ch. 12 - Repeat Practice Program 1, but instead write a...Ch. 12 - Write a program that allows the user to enter an...Ch. 12 - Write a program that uses a HashMap to compute a...Ch. 12 - Write a program that creates Pet objects from data...Ch. 12 - Repeat the previous programming project, but sort...Ch. 12 - Repeat the previous programming project, but read...Ch. 12 - Prob. 9PPCh. 12 - Prob. 10PPCh. 12 - Prob. 11PPCh. 12 - Prob. 12PPCh. 12 - Prob. 13PPCh. 12 - Prob. 14PPCh. 12 - Prob. 15PP
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education