在循环链表的末尾插入在 C 中不起作用

Insertion at end in circular linked list not working in C

请指出代码中的错误。

函数insertatend()第一次插入但没有再次插入。

我想在循环链表的末尾插入一个节点,但是在第一次插入一个元素后,如果我们再次尝试输入数据,它就会卡在while循环中。

struct node {
    int data;
    struct node *next;
};

typedef struct node node;
node *head = NULL;

node *insertatend(node *head, int value)
{
    node *temp, *p;
    p = head;
    temp = (node *)malloc(sizeof(node));
    temp->data = value;
    temp->next = head;
    if (head == NULL)
    {
        head = temp;
    }
    else
    {
        while (p->next != head)
            p = p->next;
        p->next = temp;
    }
    return head;
}

void display(node *head)
{
    node *p = head;
    if (head == NULL)
    {
        printf("\nlinked list is empty\n");
        return;
    }
    while (p->next != head)
    {
        printf("%d  ", p->data);
        p = p->next;
    }
    printf("\n");
}

int main()
{
    int ch = 1, value;
    while (ch)
    {
        printf("1.Insert  2.Display");
        scanf("%d", &ch);
        switch (ch)
        {
            case 1:
                printf("enter an element:");
                scanf("%d", &value);
                head = insertatend(head, value);
                break;
            case 2:
                display(head);
                break;
        }
    }
    return 0;
}

我认为错误在这里:

temp->next=head;
if(head==NULL){
    head=temp;
}

当您输入第一个元素时,head 为空。所以 temp->next 被设置为 NULL 并且 head 被设置为 temp。 当您输入第二个元素时,它会执行以下操作:

else{
while(p->next!=head)
        p=p->next;
p->next=temp;}

其中 p->next 为 null,因此您永远不会出现 p->next == head 的情况,您将始终处于循环中!

编辑: 所以解决方法是将其更改为:

if(head==NULL){
    head=temp;
}
temp->next=head;

编辑:显示函数中的第二个错误:循环不打印最后一个元素。我刚刚测试了它并且工作正常。

所以完整的代码看起来像:

#include <stdio.h>
#include <stdlib.h>

struct node {
    int data;
    struct node *next;
};

typedef struct node node;
node *head = NULL;

node *insertatend(node *head, int value)
{
    node *temp, *p;
    p = head;
    temp = (node *)malloc(sizeof(node));
    temp->data = value;

    if (head == NULL)
    {
        head = temp;
    }
    else
    {
        while (p->next != head)
            p = p->next;
        p->next = temp;
    }
    temp->next = head;
    return head;
}

void display(node *head)
{
    node *p = head;
    if (head == NULL)
    {
        printf("\nlinked list is empty\n");
        return;
    }
    do
    {
        printf("%d  ", p->data);
        p = p->next;
    } while (p != head);
    printf("\n");
}

int main()
{
    int ch = 1, value;
    while (ch)
    {
        printf("1.Insert  2.Display");
        scanf("%d", &ch);
        switch (ch)
        {
            case 1:
                printf("enter an element:");
                scanf("%d", &value);
                head = insertatend(head, value);
                break;
            case 2:
                display(head);
                break;
        }
    }
    return 0;
}

替代版本,使用尾指针而不是头指针,以加快追加速度。

#include <stdlib.h>
#include <stdio.h>

struct node {
    struct node *next;
    int data;
};
typedef struct node node;

node *insertatend(node *tail, int value)
{
    node *p;
    p = malloc(sizeof(node));
    p->data = value;
    if(tail == NULL){
        p->next = p;
    } else {
        p->next = tail->next;
        tail->next = p;
    }
    return p;
}    

void display(node *tail)
{
    node *p = tail;
    if (p == NULL)
    {
        printf("\nlinked list is empty\n");
        return;
    }
    do{
        p = p->next;
        printf("%d  ", p->data);
    }while(p != tail);
    printf("\n");
}

int main()
{
    node *tail = NULL;
    int i;
    for(i = 0; i < 8; i++)
        tail = insertatend(tail, i);
    display(tail);
    return 0;
}