Question: Integer turtleCount is read from input as the number of input values that follow. The node headTurtle is created with the value of turtleCount. Use
Integer turtleCount is read from input as the number of input values that follow. The node headTurtle is created with the value of turtleCount. Use scnr.nextInt() to read turtleCount integers. Insert a TurtleNode for each integer at the end of the linked list.
Ex: If the input is 2 39 14, then the output is:
2 39 14
import java.util.Scanner;
public class TurtleLinkedList { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); TurtleNode headTurtle = null; TurtleNode currTurtle = null; TurtleNode lastTurtle = null; int turtleCount; int inputValue; int i;
turtleCount = scnr.nextInt(); headTurtle = new TurtleNode(turtleCount); lastTurtle = headTurtle; /* Your code goes here */
currTurtle = headTurtle; while (currTurtle != null) { currTurtle.printNodeData(); currTurtle = currTurtle.getNext(); } } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
