- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 Javascript 为 LL 实现一个删除函数。
这是我的功能:
//Define Node obj
function Node(data){
this.data = data;
this.next = null;
}
//Define SinglyList obj
function SinglyList(){
this._length = 0;
this.head = null;
}
SinglyList.prototype.add = function(val){
var node = new Node(val),
currentNode = this.head;
//If empty, build as first node
if(!currentNode){
this.head = node;
this._length++;
return;
}
//iterate over until end of list
while(currentNode.next){
currentNode = currentNode.next;
}
//add/append new node
currentNode.next = node;
this._length++;
return node;
};
SinglyList.prototype.remove = function(index){
var currentNode = this.head, count=0, previous;
//if list is empty, exit out
if(this._length===0) return;
//Check if first node
if(index===0){
this.head = currentNode.next;
this._length--;
}else{
while(count<index){
previous = currentNode;
currentNode = currentNode.next;
count++;
}//end while
previous.next = currentNode.next;
return previous;
}// end if
};
var singlyList = new SinglyList();
singlyList.add(1);
singlyList.add(2);
singlyList.add(3);
singlyList.add(4);
singlyList.add(5);
singlyList.add(6);
singlyList.add(7);
singlyList.add(8);
singlyList.add(9);
singlyList.add(10);
console.log(JSON.stringify(singlyList));
console.log('Remove:\n'+JSON.stringify(singlyList.remove(5)));
问题:如果我的列表中有 10 个节点并调用此函数删除第 5 个节点,则此函数仅返回第 4-10 个节点,其中第 5 个节点被删除。但是,我希望它返回第 1-10 位,其中第 5 位被删除。我做错了什么以及如何检索仅删除第 5 个节点的列表?
最佳答案
静止你在代码中犯了一个小错误
1) while 循环应该运行到 < index-1 因为你从 0 开始计数
2) 你没有这样做。_length-- 在删除除第一个以外的节点之后
3) JSON.stringify 从 head 元素开始打印,当您删除节点时,您将返回前一个节点,因此您得到了错误的节点列表
修改后的代码在这里
//Define Node obj
function Node(data){
this.data = data;
this.next = null;
}
//Define SinglyList obj
function SinglyList(){
this._length = 0;
this.head = null;
}
SinglyList.prototype.add = function(val){
var node = new Node(val),
currentNode = this.head;
//If empty, build as first node
if(!currentNode){
this.head = node;
this._length++;
return;
}
//iterate over until end of list
while(currentNode.next){
currentNode = currentNode.next;
}
//add/append new node
currentNode.next = node;
this._length++;
return node;
};
SinglyList.prototype.remove = function(index){
var currentNode = this.head, count=0, previous;
//if empty, exit out
if(this._length===0) return;
//Check against first node
if(index===0){
this.head = currentNode.next;
this._length--;
}else{
while(count<index-1){
previous = currentNode;
currentNode = currentNode.next;
count++;
}//end while
previous.next = currentNode.next;
this._length--;
return this.head;
}// end if
};
var singlyList = new SinglyList();
singlyList.add(1);
singlyList.add(2);
singlyList.add(3);
singlyList.add(4);
singlyList.add(5);
singlyList.add(6);
singlyList.add(7);
singlyList.add(8);
singlyList.add(9);
singlyList.add(10);
document.write(JSON.stringify(singlyList));
singlyList.remove(5)
document.write('After removing 5 :\n'+JSON.stringify(singlyList));
关于javascript - 从单链表中删除节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39283662/
我创建了一个单链表。一切正常。 我只想知道我是否在我的代码中做了任何有潜在危险的事情。我关心的代码片段是我的推送、弹出和清理。部分代码仅用于用户交互,因此并不重要(无论如何我都发布了它,以便更清楚地了
链表:是一个有序的列表,但是它在内存中是分散存储的,使用链表可以解决类似约瑟夫问题,排序问题,搜索问题,广义表 单向链表,双向链表,环形链表 PHP的底层是C,当一个程序运行时,内存分成五个区(
我最近开始专注于使用数据结构及其用例的编码练习。下面是我的程序,将数据插入到单个链表中,其中每个节点存储下一个节点的对象。这个程序运行良好。我想了解下面的代码有多有效,所遵循的逻辑是否有效且高效。当节
尝试编写一种方法,从单链表中删除某个值的所有实例,但它似乎不起作用。 我试图适应头部是否包含该值,但我不确定这是否是正确的方法: public void remove (int value) {
struct nodeStruct { int value; struct nodeStruct *next; } struct nodeStruct* List_createNode
typedef struct node { int data; struct node *next; } NODE; NODE* add_head(NODE **phead, int data) {
void addToEnd() { newnode = (struct node*)malloc(sizeof(struct node)); printf ("Enter the cu
我想编写一种方法,从单向链表中删除具有重复数据值的连续项。该方法应返回移除的项目数。该方法应根据需要清理内存,并应假定内存是使用 new 分配的。 比如传入列表 ->a->b->c->c->a->b-
我有一个存储播放列表的表。它的定义非常简单,只有三列: setID - 引用播放列表中的一行的 16 位十六进制 songID - 16 位十六进制数,引用我的歌曲表中的一行 nextID - 16
为什么我的代码不删除链表的最后一个元素?我创建了一个当前指针来横向穿过我的列表并跳出循环..(下一个是我的结构中名为 Card_Node 的点)。回答起来应该很简单,只是不确定为什么它不会删除列表中的
大家好,我现在正在为期中考试学习,正在努力尝试使用单链表创建一个简单的程序。我想让它做的就是将“1”、“2”、“3”、“4”插入列表并打印出来。请看下面的代码: #include #include
我想创建单链表(使用类),其中每个列表中都有:指向文本的指针、整数、指向下一个列表的指针。 我需要实现 3 个功能:插入(将列表插入单链表并根据指针指向的文本使用strcmp对元素进行排序)remov
我已经实现了一个单链表,我注意到了非常奇怪的行为,但无法查明它发生的确切原因。我已经尝试使用 gdb 找出问题所在,看起来每当我计算列表的大小时,事情就开始出错了。这是我用来测试我的实现的程序,下面是
我正在尝试找出一种从链表中间删除的算法.. 我的想法是遍历链表,找到我要删除的节点之前的节点,命名为Nprev,将Nprev设置为Nnext,其中Nnext在要删除的节点之后Ndelete。 所以 N
我正在尝试创建一个简单的单向链表。以前,我成功地做到了这一点,没有任何错误,但是现在我遇到了错误。我怀疑由于第 23 行中的 if 语句,内存分配存在某种问题。 我尝试过的: 我在我的所有声明中都使用
我正在尝试创建一个简单的单向链表。以前,我成功地做到了这一点,没有任何错误,但是现在我遇到了错误。我怀疑由于第 23 行中的 if 语句,内存分配存在某种问题。 我尝试过的: 我在我的所有声明中都使用
我在学习C++语言的同时尝试构建一个链表,并实现一个从最低到最高的节点插入功能。我遵循了互联网和教科书中的一些教程。 我有一个用于链表节点设置的结构: struct Node { private:
本文实例讲述了Python数据结构与算法之链表定义与用法。分享给大家供大家参考,具体如下: 本文将为大家讲解: (1)从链表节点的定义开始,以类的方式,面向对象的思想进行链表的设计 (2)链表
1561/1563 test cases passed 问题描述: You are given two non-empty linked lists representing two non-nega
我有一个任务来实现一个单链表。我试图找出如何获取头部,但最终出现堆栈溢出错误或空指针错误。有人可以帮助我吗?我已经显示了相关的代码片段: public class Llist { privat
我是一名优秀的程序员,十分优秀!