Note that there are some explanatory texts on larger screens.

plurals
  1. POJava: Using MyLinkedList add method in iterator
    text
    copied!<p>This could be related to a problem with eclipse, but it is probably an issue with my code somewhere. Anyway, I have a MyLinkedList class and I use an iterator with it. When I was coding the iterator, it wasn't letting me use the add method by using MyLinkedList.list.add(x, index). It tells me: "The method add(T, int) in the type MyLinkedList is not applicable for the arguments (T, int)". The proposed fixes don't change anything of the code at all(like wanting to change the parameter types of the method from (T, int) to (T, int). The remove method calls the same types of parameters and works fine. I'll post the code to both the add method in MyLinkedList and the add method in the iterator.</p> <p>The class: </p> <pre><code>public void add(T x, int index) { if((index &lt; 0) || (index &gt; size)) throw new IndexOutOfBoundsException(); if(size == 0) { this.head = this.tail = new Node(x, null, null); } else if(index == 0) { this.head = new Node(x, this.head, null); this.head = this.head.getNext().getPrev(); } else if(index == size) { this.tail = new Node(x, null, this.tail); } else { Node&lt;T&gt; temp = new Node(null, null, null); temp.setData(x); if(index &lt; this.size() / 2) { temp = this.head; for(int i = 0; i &lt; index; i++) { temp = temp.getNext(); } } else { temp = this.tail; for(int i = this.size(); i &gt; index; i--) { temp = temp.getPrev(); } } temp.getNext().setPrev(temp); temp.getPrev().setNext(temp); temp.setData(x); } this.size++; } </code></pre> <p>The iterator method:</p> <pre><code>public void add(T x) { if(modCount != expModCount) throw new ConcurrentModificationException(); MyLinkedList.this.add(x, index); //the problem is in this line modCount--; index++; } </code></pre> <p>The entire program(there are definitely some things that aren't completely correct, but I'm more focused with the issue with the add method. If you find any other problems with the code and would like to point me in the right direction, that would help me as well):</p> <pre><code>public class MyLinkedList&lt;T&gt; extends AbstractList&lt;T&gt; { private static class Node&lt;T&gt; { private T data; private Node&lt;T&gt; prev; private Node&lt;T&gt; next; /** * Constructor * @param nodeData - the data in type T that is stored in the node * @param nodePrev - the node previous to the node initialized * @param nodeNext - the node following the initialized node */ public Node(T nodeData, Node&lt;T&gt; nodePrev, Node&lt;T&gt; nodeNext) { this.data = nodeData; this.prev = nodePrev; this.next = nodeNext; } /** * gets the node previous to this one * @return returns the node previous to this */ public Node&lt;T&gt; getPrev() { return this.prev; } /** * sets the node previous to this * @param temp the node used to set the previous node to */ public void setPrev(Node&lt;T&gt; temp) { this.prev = temp.prev; } /** * gets the node after this node * @return the node following this node */ public Node&lt;T&gt; getNext() { return this.next; } /** * sets the node after this node in the list * @param prev - the node */ public void setNext(Node&lt;T&gt; prev) { this.next = prev.next; } /** * get the data from this node * @return the data from this node */ public T getData() { return this.data; } /** * set the data in this node * @param data - the data to be put in this node */ public void setData(T data) { this.data = data; } } private int size; private int modCount; public Node&lt;T&gt; head; public Node&lt;T&gt; tail; /** * Constructor for MyLinkedList that sets the head and tail of the list to point to null and the size set to 0 */ MyLinkedList() { this.head = new Node&lt;T&gt;(null, null, null); this.tail = new Node&lt;T&gt;(null, null, null); this.size = 0; } /** * gets the data from the node specified by the index * @param index - the index of the node * @return the data of the node with index index */ @Override public T get(int index) { Node&lt;T&gt; temp = new Node(null, null, null); if((index &lt; 0) || (index &gt; size)) { throw new IndexOutOfBoundsException(); } if(index &lt; this.size() / 2) { temp = this.head; for(int i = 0; i &lt; index; i++) { temp = temp.getNext(); } return temp.getData(); } else { temp = this.tail; for(int i = this.size(); i &gt; index; i--) { temp = temp.getPrev(); } return temp.getData(); } } /** * adds data to the list at the specified index * @param x - the data to be stored * @param index - where in the list the data is stored */ public void add(T x, int index) { if((index &lt; 0) || (index &gt; size)) throw new IndexOutOfBoundsException(); if(size == 0) { this.head = this.tail = new Node(x, null, null); } else if(index == 0) { this.head = new Node(x, this.head, null); this.head = this.head.getNext().getPrev(); } else if(index == size) { this.tail = new Node(x, null, this.tail); } else { Node&lt;T&gt; temp = new Node(null, null, null); temp.setData(x); if(index &lt; this.size() / 2) { temp = this.head; for(int i = 0; i &lt; index; i++) { temp = temp.getNext(); } } else { temp = this.tail; for(int i = this.size(); i &gt; index; i--) { temp = temp.getPrev(); } } temp.getNext().setPrev(temp); temp.getPrev().setNext(temp); temp.setData(x); } this.size++; } /** * gets the size of the list * @return the size of the list */ @Override public int size() { return this.size; } /** * @return returns whether or not the list is empty */ public boolean isEmpty() { return (this.size() == 0); } /** * clears the list by setting the head and tail of the list equal to null and the size equal to 0 */ public void clear() { this.head = new Node&lt;T&gt;(null,null,null); this.tail = new Node&lt;T&gt;(null,null,null); this.tail = this.head.getNext(); this.size = 0; } /** * removes a node from the list * @return the data from the removed node */ public T remove(int index) { Node&lt;T&gt; temp; if ((index &lt; 0) || (index &gt;= size) || isEmpty()) { throw new IndexOutOfBoundsException(); } if(index == 0) { temp = new Node(this.head.getData(), null, this.head.getNext()); this.head = this.head.getNext(); } else { Node&lt;T&gt; prev = new Node(null,null,null); prev = getNth(index - 1); temp = new Node(prev.getNext().getData(), null, null); } this.size--; return temp.getData(); } /** * gets the node at the index index * @param index - the index of the node we want to return * @return the node at the specified index */ private Node&lt;T&gt; getNth(int index) { Node&lt;T&gt; temp; if(index &lt; 0 || index &gt; size) throw new IndexOutOfBoundsException(); if(index &lt; this.size() / 2) { temp = this.head; for(int i = 0; i &lt; index; i++) { temp = temp.getNext(); } } else { temp = this.tail; for(int i = this.size(); i &gt; index; i--) { temp = temp.getPrev(); } } return temp; } private class Iterator&lt;T&gt; implements ListIterator&lt;T&gt; { private Node&lt;T&gt; currentNode; private int expModCount = modCount; int index = 0; /** * adds the data to the list using the add method from MyLinkedList */ @Override public void add(T x) { if(modCount != expModCount) throw new ConcurrentModificationException(); MyLinkedList.this.add(x, index); modCount--; index++; } /** * @return returns true if the current node is not the tail, returns false if the current node is the tail of the list */ @Override public boolean hasNext() { if (currentNode.equals(MyLinkedList.this.tail)) return false; else return true; } /** * @return returns true if the current node is not the head of the list, returns false if the current node is the head of the list */ @Override public boolean hasPrevious() { if (currentNode.equals(MyLinkedList.this.head)) return false; else return true; } /** * @return the data from the next node */ @Override public T next() { if(modCount != expModCount) throw new ConcurrentModificationException(); if(hasNext() == false) throw new NoSuchElementException(); T nextData = currentNode.getData(); currentNode.setData(currentNode.getNext().getData()); index++; return nextData; } /** * @return the index of the next node */ @Override public int nextIndex() { return index + 1; } /** * @return the data from the previous node */ @Override public T previous() { if(modCount != expModCount) { throw new ConcurrentModificationException(); } if(hasPrevious() == false) { throw new NoSuchElementException(); } T prevData = currentNode.getPrev().getData(); currentNode.setData(currentNode.getPrev().getData()); index--; return prevData; } /** * @return the index of the previous node */ @Override public int previousIndex() { return index - 1; } /** * removes a node using the MyLinkedList remove method */ @Override public void remove() { if(modCount != expModCount) throw new ConcurrentModificationException(); MyLinkedList.this.remove(currentNode); modCount--; } /** * sets the data of the current node * @param x - the data to set to the current node. */ @Override public void set(T x) { currentNode.setData(x); } } } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload