gpt4 book ai didi

c - 在 C 中反转链表

转载 作者:太空宇宙 更新时间:2023-11-04 02:04:30 25 4
gpt4 key购买 nike

我应该颠倒链表的顺序,我想我的想法是正确的,但出于某种原因,当我打印出链表时,我的代码进入了一个无限循环,我不确定为什么认为它与接近尾声的 for 循环有关,因为当我注释掉该部分并再次测试时,不再有无限循环。

这是一个列表的示例:

42, 36, 14, 17, 48, 36

这就是我想要得到的:

36, 48, 17, 14, 36, 42

下面是我的代码:

// List element: a list is a chain of these
typedef struct element
{
int val;
struct element* next;
} element_t;

// List header - keep track of the first and last list elements
typedef struct list
{
element_t* head;
element_t* tail;
} list_t;



void reverse (list_t* L)
{
//getting the len of the list
unsigned int len = 0;
element_t* temp = L->head;
while (temp != L->tail)
{
len++;
temp = temp->next;
}
len++; //extra +1 len for tail since while loop does not include


//now for reversing
unsigned int i = 0;
element_t* ELEtail = L->tail;
element_t* ELEhead = L->head;
for (i = 0; i < len-1; i++)
{
ELEtail->next = ELEhead;
ELEhead = ELEhead->next;
ELEtail = ELEtail->next;
}

}

最佳答案

您在 for 循环中编写的代码是错误的。

让我们举个例子给你一个想法。最初你的列表是

42 -> 36 -> 14 -> 17 -> 48 -> 36
| |
ELEhead ELEtail

就在 for 循环之前:ELEtail 指向 36(最后一个元素),ELEhead 指向 42(第一个元素)。

现在,在 for 循环的第一次迭代之后:ELEtail 指向 42,ELEhead 指向 36(初始列表的第二个元素),列表变为

42 -> 36 -> 14 -> 17 -> 48 -> 36 -> 42
| |
ELEhead ELEtail

上面例子中的第一个和最后一个 42 是相同的元素。因此它形成了一个无限循环。

现在要反转链表,只需要一个指向反转链表头部的指针。每次在原始链接列表中遇到新元素时,只需将其输入反向链接列表的头部即可。当您将原始链接列表的最后一个元素插入新链接列表的头部时,您的链接列表将被反转。为此,您甚至不需要知道原始列表的长度。这将保存您计算链接列表长度的第一个循环。

关于c - 在 C 中反转链表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22395819/

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