链接列表删除以C结尾

时间:2013-07-31 10:30:50

标签: c list linked-list

我正在尝试用C编写一个简单的文本编辑器,我正在使用LinkedList。我有deleteEnd函数的问题。我哪里出错了?

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

我将角色和角色的坐标存储在如下结构中:

struct node {
    struct node *previous;
    char c;
    int x;
    int y;
    struct node *next;
}*head;

每当输入一个字母时都会调用此方法。

void characters(char typed, int xpos, int ypos)     //assign values of a node
{
    struct node *temp,*var,*temp2;
    temp=(struct node *)malloc(sizeof(struct node));
    temp->c=typed;
    temp->x=xpos;
    temp->y=ypos;

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

    else
    {
        temp2=head;
        while(temp2!=NULL)
        {
            var=temp2;
            temp2=temp2->next;
        }
        temp2=temp;
        var->next=temp2;
        temp2->next=NULL;
    }
}

如果有更改,请打印新节点。

void printer()          //to print everything
{
    struct node *temp;
    temp=head;
    while(temp!=NULL)
    {
        gotoxy(temp->x,temp->y);
        printf("%c",temp->c);
        temp=temp->next;
    }

}

现在,我不知道为什么头部的最后一个元素不会被删除。

void deletesEnd()
{
    struct node *temp,*last;
    temp=head;
    while(temp!=NULL)
    {
        last=temp;
        temp=temp->next;
    }
    if(last->previous== NULL)
    {
        free(temp);
        head=NULL;
    }
    last=NULL;
    temp->previous=last;
    free(temp);
}

这就是一切开始的地方。

main()
{
    char c;         //for storing the character
    int x,y;        //for the position of the character
    clrscr();
    for(;;)
    {
        c=getch();
        x=wherex();
        y=wherey();
        if(c==0x1b)     //escape for exit
        {
            exit(0);
        }

        else if (c==8)  //for backspace
        {
            deletesEnd();
            // clrscr();
            printer();
        }

        else            //normal characters
        {
            characters(c,x,y);
            printer();
        } 

    }
}

5 个答案:

答案 0 :(得分:1)

要查找列表中的最后一个节点,最简单的方法是循环,直到next指针为NULL

要在最后删除,您还需要跟踪倒数第二个节点,它看起来像这样:

struct node *prev, *curr;

for (prev = NULL, curr = head; curr->next != NULL; prev = curr, curr = curr->next)
    ;

/* `curr` is now the last node in the list, `prev` is the next-to-last node */
if (prev != NULL)
    prev->next = NULL;  /* Unlink the last node */
else
    head = NULL;  /* List was only one node long */

/* Free the memory for the last node */
free(curr);

如果你正确地保持列表双链接,那么循环会更容易,因为你不必再跟踪倒数第二个节点了:

struct node *node;

for (node = head; node->next != NULL; node = node->next)
    ;

/* `node` is now the last node in the list */
if (node->previous != NULL)
    node->previous->next = NULL;  /* Unlink last node */
else
    head = NULL;  /* List was only one node long */

/* Free the memory for the last node */
free(curr);

从一开始就跟踪尾部将使这个更多更简单:

if (tail != NULL)
{
    struct node *node = tail;

    if (node->previous != NULL)
    {
        node->previous->next = NULL;  /* Unlink last node */
        tail = node->previous;
    }
    else
        head = tail = NULL;  /* Removing last node in list */

    free(node);
}

答案 1 :(得分:1)

试试这个:

void deletesEnd()
{
struct node *temp,*last;
temp=head;
last = temp;
while(temp != NULL && temp->next!=NULL)
{
    last=temp;
    temp=temp->next;
}
if(last == temp)
{
    free(temp);
    head=NULL;
} else {
    free(last->next);
    last->next = NULL;
}

在您的算法中,您尝试使用NULL指针,因此您无法访问我认为的上一个节点。

答案 2 :(得分:0)

试试这个

void deletesEnd()
{
   struct node *temp,*last;
   temp=head;

   while(temp!=NULL)
   {
       last=temp;
       temp=temp->next;
   }

   if(last->previous== NULL)
   {
        free(temp);
        head=NULL;
   }

   last->previous->next = NULL;
   last=NULL;
   temp->previous=last;
   free(temp);
}

你知道,你已将last中的最后一个元素放在列表中,然后将last=NULL;放在last变量中。 temp已经NULL,因此temp->previous=last;没有任何意义。 您需要将最后一项的上一项指向NULL作为

last->previous->next = NULL;

确实

答案 3 :(得分:0)

这一行:

temp->previous=last;

会导致问题,因为temp点在那时已经为空(因为它是while循环中的终止条件)。

将您的方法更改为:

void deletesEnd()
{
   struct node *temp,*last;
   temp=head;
   while(temp!=NULL)
   {
       last=temp;
       temp=temp->next;
   }
   if(last != NULL) {
       if (last->previous != null) { // Last element gonig to be deleted so the previous element if exists should point his next to null (end of list)       
           last->previous->next = null;
       }   
       free(last); // Free the last element in the list
   }
}

答案 4 :(得分:0)

Linkedlist仅使用两个简单的通用规则...

  1. 首先建立链接
  2. 制作后的第二个,打破链接。
  3. 检查条件......

    1. 如果您有空列表
    2. 如果列表只有一个节点
    3. 如果它有多个节点
    4. 尝试这些规则。我希望它对你有用。