Please write in JAVA, Im trying to get a program that   Returns first index where given value is found in list (if exist).   param value - value to be searched.   return first index of the value or -1 if value does not exist     public boolean set(int index, int value) throws IndexOutOfBoundsException

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

Please write in JAVA, Im trying to get a program that
  Returns first index where given value is found in list (if exist).
  param value - value to be searched.
  return first index of the value or -1 if value does not exist

    public boolean set(int index, int value) throws IndexOutOfBoundsException {
        //Implement this method
        
        return false;
    }

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; } }
//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; }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Lists
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