【发布时间】:2019-03-30 08:58:55
【问题描述】:
我必须使用我自己的构造函数来实现一个双循环链表,我已经完成了很多,但不知道为什么 remove 方法不起作用。
我进行了大量研究,但很难找到符合我需求的任何东西。问题是我没有永久的头尾指针,就像通常在双向链表中一样,但必须使用“头”作为起点和终点。
带有标题元素的构造函数
public MyDoubleLinkedList() {
header = new DEntry(0, null, null);
header.next = header;
header.previous = header;
size = 0;
}
listEntrys 的内部类
class DEntry {
/** the data element represented by this entry */
private final int data;
/** reference to the previous element in the list */
private DEntry previous;
/** reference to the next element in the list */
private DEntry next;
/**
* @param data the data object this entry represents
* @param previous reference to the previous element in the list
* @param next reference to the next element in the list
*/
public DEntry(int data, DEntry previous, DEntry next) {
this.data = data;
this.previous = previous;
this.next = next;
}
}
添加到列表的方法:
/**
* Adds a new element into the list at the position specified
*
* @param position the 0 based position at which to add the passed value
* @param value the value to add
* @return 0 if adding was successful, -1 if not
*/
public int add(int position, int value) {
// TODO: please put your code here
DEntry listEntry = new DEntry(value, null, null);
DEntry temp = header;
int i = 0;
if (position < 0 || position > size) {
return -1;
}
if (position == 0) {
temp = header;
} else {
while (i < position) {
temp = temp.next;
i++;
}
}
listEntry.next = temp.next;
listEntry.previous = temp.next;
temp.next = listEntry;
temp.next.previous = listEntry.next;
size++;
return 0;
}
从列表中删除的方法
/**
* Removes an element at the position specified from the list
*
* @param position the 0 based position of the value to remove
* @return value of the removed entry if removing was successful, -1 if not
*/
public int remove(int position) {
// TODO: please put your code here
DEntry toBeDeleted = header;
if(position < 0 || position > size) {
return -1;
}
if(getEntry(position) == null) {
return -1;
} else {
toBeDeleted = getEntry(position);
}
int dataOfDeletedNode = toBeDeleted.data;
if(position == 0) {
header.previous.next = toBeDeleted.next;
header.next.previous = toBeDeleted.previous;
} else if(position == size){
toBeDeleted.previous.next = header.next;
toBeDeleted.next.previous = toBeDeleted.previous;
} else {
toBeDeleted.previous.next = toBeDeleted.next;
toBeDeleted.next.previous = toBeDeleted.previous;
}
size--;
System.out.println(dataOfDeletedNode);
return dataOfDeletedNode;
}
如果我运行代码
list.add(0, 10);
list.add(1, 20);
list.add(0, 30);
remove(1); // 10 should be deleted
我得到的不是 30、20,而是 20。
【问题讨论】:
-
顺便说一句,是否有任何理由使用该 while 循环而不是
DEntry toBeDeleted = getEntry(position);?无论如何,您都在循环直到产生效果,那为什么不一步完成呢? -
还要注意
if (position == size)的主体永远不会被执行——你已经检查过position严格小于size。 -
是的,getEntry(position) 正是这样做的,但我已经到了绝望到想尝试一切的地步。会尽快改变它!也感谢关于尺寸限制的提示!
-
我还会检查您调用
remove(1)之前的结果是否符合您的预期。 -
在删除调用发出之前打印列表:30、10、20。对我来说似乎是正确的。它也以某种方式切断了已删除元素的前一个元素。
标签: java linked-list doubly-linked-list circular-list