的方法刪除對象表單列表我試圖使用具有特定索引的方法從列表中刪除一個對象,該方法需要刪除特定索引。這裏棘手的部分是這個列表是一個雙鏈表,當我從它中刪除一個節點時,下一個和上一個指針需要重定向到正確的節點。 這是我到目前爲止,但代碼似乎沒有正確重定向指針,我會appriciate任何投入!使用帶參數
private static final class Node<T>
{
private T value;
private Node<T> previous, next;
private Node(T value, Node<T> previous, Node<T> next) // constructor
{
this.value = value;
this.previous = previous;
this.next = next;
}
}
private Node<T> head; // first in the list
private Node<T> tale; // last in the list
public T remove(int index) {
indexcontrol(index); // checks if legal index
Node<T> q, p = null;
if(index == 0)
{
q = head;
head = head.next;
}
else
{
p = findNode(index-1); // finds the nodes value on place index
q = p.next;
p.next= q.next;
}
if (q== tale) tale = p;
T value = q.value;
q.value = null;
q.next = null;
return value;
}
如果你刪除元素,爲什麼你不讓你的方法'void'? – qiGuar
即時通訊在另一種方法中使用返回值 – comodeque