gpt4 book ai didi

c - 链表删除位置 N 的节点

转载 作者:太空狗 更新时间:2023-10-29 15:36:58 28 4
gpt4 key购买 nike

编辑:找出问题所在。此外,如果您是通过谷歌或其他搜索引擎发现此问题的,那么这里就是我出错的地方以及解决方法。

我的 deleteNode() 方法以正确的温度在列表中正确移动并保持头部不变。我出错的地方在于我作为该方法的结果返回的内容。我返回的是 temp 或 newNode,这是不正确的,因为它遍历列表直到找到定义的位置。一旦找到定义的位置,它就会重新分配 ->next 指针以指向正确的 next->next> 指针,但我又返回了错误的东西。因为我们已经使用 temp/NewNode 在列表中移动,所以我们丢失了标题,我们返回了我们找到的位置以及列表的下一个位置中的任何内容。

我们如何解决这个问题是返回头部(这是传递到方法中的内容)。这样做的原因是因为我们必须了解 LinkedLists 是如何工作的。每个节点的指针指向下一个节点。前任。我们有一个链表 |A|| - |B|| - |C|| - |D|| - |E|| - |F||

如果我们想删除节点 C,我们使用临时指针移动到节点 B,然后将 B->next 分配给 temp->next->next 从而跳过 C 节点并分配 D 节点。

注意:(据我所知,这实际上并没有释放 C 节点的内存,因此这不是最佳实践,因为这样可能会导致内存泄漏)您应该在 C 节点上使用 free() 方法。

这是我最终使用的代码

struct node* DeleteNode(struct node* head, int pos) {

struct node* temp = head;
int length = LinkedListLength(temp);
int i;

if(pos <= 0 || pos > length){
printf("ERROR: Node does not exist!\n");
}else{
if(pos == 1){
head = head->next; //move from head (1st node) to second node
}else{
for(i = 1; i < pos-1; ++i){ //move through list
temp = temp->next;
}
temp->next = temp->next->next;
}
}
return head;
}

希望这有助于理解我是如何修复它的。

/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
原帖
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////

编辑:注意:这是我花了几天(估计 4 小时)编程的家庭作业,我只是停留在这一部分。您可以在下面查看我的尝试

我已经能够从开始/结束插入和删除,但是我似乎无法让链表中位置 N 的删除节点工作。

我的伪代码是这样的:

  1. 链表:1,3,5,7,9,23
  2. 抓取链表
  3. 创建新的结构节点 A = head
  4. 遍历链表直到职位
  5. 将节点分配给节点->下一个
  6. 返回链表

示例输入

Node structure 
int data;
struct node* next;

int values[] = {1,3,5,7,9,23};
struct node* llist = CreateList(values,6);

llist = DeleteNode(llist, 1);
llist = DeleteNode(llist, 5);
llist = DeleteNode(llist, 3);

一旦代码运行,它应该将 llist 的值保留为 3、5、9 但是,它将第一个节点替换为 0

实际代码:

struct node* DeleteNode(struct node* head, int pos) {

struct node* temp = head;
struct node* newNode = head;
int length;
int i;

printf("DeleteNode: position = %d \nBefore: ", pos);
PrintList(temp);

if(pos <= 0){ //node does NOT exist
printf("ERROR: Node does not exist!\n");
}else{ //node DOES exist
length = LinkedListLength(temp);

if(length < pos){ //if length < position Node does not exist
printf("ERROR: Node does not exist!\n");
}else{
if(pos == 0){
newNode = temp->next;
}else if(pos == 1){
newNode = temp->next;
}else{
for(i = 1; i < pos; i++){
printf("i = %d\n", i);
temp = temp->next;
newNode->next;
}
if(temp->next == NULL){
newNode = NULL;
}else{
newNode = temp->next;
}
}
printf("After: ");
PrintList(newNode);
printf("\n");
}
}
return newNode;
}

编辑#2:代码错别字

提前感谢您的帮助。根据我得出的结论,我的问题是我没有正确地浏览列表,但我不确定为什么我没有。

最佳答案

在你的代码中,你有一行

newNode->next;

在您的 for 循环中。该操作不执行任何操作。

你还有

newNode-> = NULL;

这不是有效的 C,我不知道你是如何编译它的。

但真的,不要使用那个循环。链表是最基本的递归数据结构之一。因此,几乎所有操纵它们的算法作为递归解决方案都是最优雅的。

typedef struct node node_t;

node_t* delete_at_index(node_t* head, unsigned i)
{
node_t* next;

if(head == NULL)
return head;

next = head->next;

return i == 0
? (free(head), next) /* If i == 0, the first element needs to die. Do it. */
: (head->next = delete_at_index(next, i - 1), head); /* If it isn't the first element, we recursively check the rest. */
}

关于c - 链表删除位置 N 的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5011990/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com