我正在使用javascript编写链表数据结构。我在将新节点插入特定位置时遇到问题。我有以下代码。
var node3 = {
data: 4,
next: null
},
node2 = {
data: 3,
next: node3
},
node1 = {
data: 1,
next: node2
},
newNode = {
data: 2,
next: null
},
head = node1, current = head, pos = 3, i = 1, prev;
while (current.next) {
if (pos === i) {
prev.next = newNode;
newNode.next = current;
break;
}
prev = current;
i++;
current = current.next;
}
我最初创建3个节点,最后创建newNode
。我想在位置3插入此newNode
,即pos = 3
,这意味着列表的结尾。我上面的代码将节点插入到其他地方,但最后没有。 为什么以及如何解决这个问题?
答案 0 :(得分:1)
当你遍历node3 current.next == null
时,所以循环不会执行,所以你需要为你的循环提出另一个条件。
此外,您应该使用break
代替return
,因为您不在函数中。
答案 1 :(得分:0)
您可以尝试动态创建链接列表。
var Linkedlist = function() {
this.head = null;
this.tail = null;
};
function createNode( val ) {
var node = {};
node[ "key" ] = val;
node[ "prev" ] = null;
node[ "next" ] = null;
return node;
}
Linkedlist.prototype.insert = function( val ) {
if ( this.head === null ) {
this.head = createNode( val );
this.tail = createNode( val );
} else {
var newNode = createNode( val );
newNode[ "next" ] = this.head;
newNode[ "prev" ] = null;
this.head[ "prev" ] = newNode;
this.head = newNode;
}
console.log(this);
};
Linkedlist.prototype.search = function( val ) {
var node = this.head;
while ( node[ "key"] != val ) {
node = node[ "next" ];
if ( node === null ) {
break;
}
}
return node;
};
Linkedlist.prototype.remove = function( val ) {
var node = this.search(val);
if ( node != null ) {
if ( node[ "next" ] === null && node[ "prev" ] === null ) {
this.head = null;
this.tail = null;
} else {
if ( node[ "key"] === this.head[ "key" ] ) {
this.head = node[ "next" ];
this.head[ "prev" ] = null;
} else if ( node[ "key"] === this.tail[ "key" ]) {
this.tail = node[ "prev" ];
this.tail[ "next" ] = null;
} else {
node[ "prev" ][ "next" ] = node[ "next" ];
node[ "next" ][ "prev" ] = node[ "prev" ];
}
}
console.log( this );
} else {
console.log("key doesnt exist");
}
};
Linkedlist.prototype.largest = function() {
var node = this.head;
var largest = this.head;
while ( node[ "next"] !== null ) {
if ( node[ "key"] > largest[ "key" ] ) {
largest = node;
}
node = node[ "next" ];
}
return largest;
};
可以如下所示进行实例化。
linkedlist = new Linkedlist();
linkedlist.insert(1);
linkedlist.insert(2);
linkedlist.insert(3);
linkedlist.insert(4);
linkedlist.remove(2);
linkedlist.largest();
答案 2 :(得分:0)
使用LinkedList,在位置插入并不常见,因为LinkedLists不会维护每个节点的位置,而是维护节点之间的链接。通常我们想在节点之前/之后插入。更常见的是,我们希望在列表的末尾插入。下面是在sourceNode
之后插入的代码this.insertAfter = function(sourceNode, node) {
var curNode = head;
while (curNode != null) {
if (curNode === sourceNode) {
curNode.setNext(node.setNext(curNode.getNext()));
return;
}
else curNode = curNode.getNext();
}
};
答案 3 :(得分:0)
理想情况下,使用您的结构,insertAt函数应如下所示:
var insertAt = function(head, item, index) {
var curr = head;
var count = 0;
while (curr !== null) {
if (count === index) {
var newNode = { data: item, next: curr.next };
curr.next = newNode;
break;
}
count++;
curr = curr.next;
}
};
insertAt(head, 2, 3);
让我知道这是否可行。
还要看看我创建的这个LinkedList类,insertAt
函数当前缺失,但是从这个堆栈问题来看,我也打算将其添加到我的类中。
Class- GitHub
NPM package - @dsinjs/linked-list
Complete documentation