-6

我有一个列表,我想从这个列表中删除比较人名的寄存器。这是删除功能:

void remove(char name[]){
  if (pBegin!=NULL){
    Nodo *pcopy;
    if (!strcmp(name,pBegin->person.name)){
      pcopy=pBegin;
      pBegin=pBegin->pNext;
      printf("REMOVED!\n");
      free(pcopy);
    }
    else{
      Nodo *pCurrent=pBegin;
      Nodo *pPrevious=NULL;
      while ((strcmp(name,pCurrent->person.name)) && (pCurrent!=NULL)){  // here is probably the error
        pPrevious=pCurrent;
        pCurrent=pCurrent->pNext;
      }
      if (pBegin==NULL)
        printf("The name was not found!\n");
      else{
        pPrevious->pNext=pCurrent->pNext;
        printf("REMOVED!\n");
        free(pCurrent);
      }
    }
  }
  else
    printf("empty list!\n");
}

对不起,大帖子和视觉上的丑陋。这是我在这里的第一篇文章,我是 C 新手,已经尝试了所有方法,但无法解决此错误。

4

1 回答 1

1

在 strcmp 中使用 pCurrent!=NULL 后测试它为时已晚。

   while (pCurrent!=NULL && strcmp(name,pCurrent->person.name)){ // test names are different
于 2013-03-24T23:40:59.957 回答