我在JavaScript中构建链表。我有一个部分不明白。
function Node(element) {
this.element = element;
this.next = null;
this.previous = null;
}
function LList() {
this.head = new Node("head");
this.find = find;
this.findLast = findLast;
this.remove = remove;
this.insert = insert;
this.display = display;
this.dispReverse = dispReverse;
}
function find(item) {
var currNode = this.head;
while(currNode.element != item) {
currNode = currNode.next;
}
return currNode;
}
function display(list) {
var currNode = this.head.next;
while (currNode != null) {
console.log(currNode.element);
currNode = currNode.next;
}
}
function insert(newElement, item) {
var newNode = new Node(newElement);
var current = this.find(item);
newNode.next = current.next;
newNode.previous = current;
current.next = newNode;
// Why I dont need this part?
// Since new node got inserted, on my thoughts,
// the next node of the current node should point the new node as a previous one
// current.next.previous = newNode;
}
function remove(item) {
var currNode = this.find(item);
if (currNode.next != null) {
currNode.previous.next = currNode.next;
currNode.next.previous = currNode.previous;
currNode.next = null;
currNode.previous = null;
}
}
function findLast() {
var currNode = this.head;
while (currNode.next != null) {
currNode = currNode.next;
}
return currNode;
}
function dispReverse() {
var currNode = this.head;
currNode = this.findLast();
while(currNode.previous != null) {
console.log(currNode.element);
currNode = currNode.previous;
}
}
var cities = new LList();
cities.insert("Conway", "head");
cities.insert("Russellville", "Conway");
cities.insert("Carlisle", "Russellville");
cities.insert("Alma", "Carlisle");
cities.display();
cities.remove("Carlisle");
cities.display();
cities.dispReverse();
/*
Output should look like this:
Conway
Russellville
Carlisle
Alma
Conway
Russellville
Alma
Alma
Russellville
Conway
*/
问题是插入函数!
假设我已经有了一个B C节点。
我想在B后面插入K。
当前,B的下一个和上一个分别是C和A。
C的前一个元素是B。
一旦我把K放在B后面,
a B K C
(1)K的下一个元素将是C
(2)K的前一个元素将是B
(3)B的下一个元素是K
(4)C的前一个元素是K。
在我在Insert函数中编写的代码中,下面的每一行代码都应该处理上面的语句。
(1)newnode.next=current.next;
(2)newnode.previous=current;
(3)current.next=newnode;
(4)current.next.previous=newnode;
但是当我运行包括(4)在内的整个代码时,错误发生了。
我不明白为什么...
如果没有(4)行代码,它就可以工作。
有谁能帮我理解这个吗?
你需要在第三步之前做第四步:
current.next.previous = newNode
current.next = newNode
实际上,在查找“old”current.next.next
的previous
属性之前,current.next.previous
的引用被设置为newnode
(K)(当指向B时为current.next.previous
)。一旦为当前节点分配了新值,对该节点的引用就会更改。这就是为什么current.next.previous
实际上返回newnode.previous
而不是您所期望的节点引用。
我必须实现类"DoubleChainedList"和"Elem"。DoubleChainedList管理一个双链列表,Elem是关联的节点类,指针指向后继节点和前驱节点。 我必须实施以下方法: public void removeAtIndex(int i)//删除位置i处的元素 public int[]toArray()//将列表作为数组返回 双链列表 要素: 我的问题:它显示了以下错误:hea
我写了一个程序,通过双链表管理银行账户,但我发现取消程序有问题。 我仍然有同样的问题,即使我尝试了这个方法:-(pnt)-
我是C语言的新手,正在尝试使用双链表创建一个电话簿应用程序。但是,我无法确定如何删除联系人,即此人的名字、姓氏和号码,并将上一个节点链接到下一个节点。我已经附上下面的代码。 任何帮助都将不胜感激。谢谢
本文向大家介绍双向链表和双向循环链表?相关面试题,主要包含被问及双向链表和双向循环链表?时的应答技巧和注意事项,需要的朋友参考一下 双向链表: 包含两个指针,一个prev指向前一个节点,一个next指向后一个节点。 双向循环链表: 最后一个节点的 next 指向head,而 head 的prev指向最后一个节点,构成一个环。
我的程序不断崩溃。我觉得我的逻辑有问题。请帮忙!谢谢
问题内容: 我想在同步双向链接列表上实现QuickSort算法。我给函数“ partition”添加了左右边界,然后它开始在左侧搜索较低的值,并在右侧搜索较大的值。之所以可行,是因为我的枢轴元素始终是最右侧的元素,并且在此步骤之后它位于中间。 我总是无休止的循环,我不知道为什么?也许错误的中止条件? 她我的代码: 问题答案: 只是快速浏览一下,您的列表似乎不仅被双重链接,而且在末端连接在一起(因此