N JAVA PLEASE, need help finding an element in the list     /**      * Returns whether the given value exists in the list.      * @param value - value to be searched.      * @return true if specified value is present in the list, false otherwise.      */     public int indexOf(int value) {         //Implement this method                  return -1;     }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

IN JAVA PLEASE, need help finding an element in the list

    /**
     * Returns whether the given value exists in the list.
     * @param value - value to be searched.
     * @return true if specified value is present in the list, false otherwise.
     */

    public int indexOf(int value) {
        //Implement this method
        
        return -1;
    }

//Instance variables
private IntegerNode head;
private int itemCount;
/**
* Default constructor.
*/
public LinkedIntegerList() {
super ();
this.head = null;
this.itemCount = 0;
}
Transcribed Image Text://Instance variables private IntegerNode head; private int itemCount; /** * Default constructor. */ public LinkedIntegerList() { super (); this.head = null; this.itemCount = 0; }
public class IntegerNode {
//Instance variables
private int value;
IntegerNode next;
//Accessors and Mutators
public int getvalue() {
return value;
}
public void setValue (int value) {
this.value = value;
}
public IntegerNode getNext() {
return next;
}
public void setNext(IntegerNode next) {
this.next = next;
}
//Constructors
public IntegerNode (int value, IntegerNode next) {
super ();
this.value = value;
this.next = next;
}
public IntegerNode(int value) {
super ();
this.value = value;
this.next = null;
}
public IntegerNode () {
super ();
this.next = null;
}
}
Transcribed Image Text:public class IntegerNode { //Instance variables private int value; IntegerNode next; //Accessors and Mutators public int getvalue() { return value; } public void setValue (int value) { this.value = value; } public IntegerNode getNext() { return next; } public void setNext(IntegerNode next) { this.next = next; } //Constructors public IntegerNode (int value, IntegerNode next) { super (); this.value = value; this.next = next; } public IntegerNode(int value) { super (); this.value = value; this.next = null; } public IntegerNode () { super (); this.next = null; } }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Operations of Linked List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT