1

程序应该对节点进行插入升序排序,首先它应该检查名称,如果名称相等,它应该对 id 进行排序,我不知道是什么问题没有正确排序。

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

typedef struct nd{
int id;
char name[20];
float gpa;
struct nd *next;
}node;


typedef node *list;

//---------------------------------------------------------------

int insertlist(list *head,char *buffer)
{
list p,q,n;
int m,num,k,sc;
p=(list)malloc(sizeof(node));
num=sscanf(buffer,"%d %s %f",&(p->id),(p->name),(&p->gpa));
if(num!=3)
 {
  printf("info not complete\n");
  free(p);
  return 1;
 }
else
{

   if(!*head)
   {
    *head=p;
    p->next = NULL;
   }
//******** sorting tthe names and ids for equal names
   else if(sc=strcmp((*head)->name,p->name)> 0 || ((sc == 0) && ((*head)->id > p->id)))
      {//head is modified
        p->next=*head;
        *head=p;
      }

   else{
        n=*head;
        q=n->next;
        while(q && ((sc=strcmp(q->name,p->name)<0) || ((sc == 0) && (q->id < p->id))))
          {
           n=q;
           q=q->next;
          }
       n->next=p;
       p->next=q;
       }
}

return 0;
}

//------------------------------------------------------

int main()
{
int id,r;
list head,p;
FILE *fp;
char c,buffer[100],filename[10];
if ((fp=fopen("student.txt","r"))==NULL)
{
  printf("error opening %s",filename);
  exit(1);
}
else
 {
head=NULL;

while(fgets(buffer,100,fp)!=NULL)
   {
    buffer[strlen(buffer)-1]=='\0';
    r=insertlist(&head,buffer);
   }
fclose(fp);
 }

for(p=head;p!=NULL;p=p->next)
  printf("%d  %s  %f\n\n",p->id,p->name,p->gpa);
}

内容示例student.txt

121513 ala 45.00
121510 wang 21.00 
145852 frank 26.00 
151515 ala 25.00 
4

3 回答 3

1

首先,解决这个问题:

buffer[strlen(buffer)-1]=='\0';

那是平等比较;不是任务。我相信您正试图在缓冲区末尾抛出换行符。如果是这种情况,您可能需要确保它一个换行符开始抛出(例如,输入文件的最后一行可能不会以一个结尾。无论如何,这仍然是损坏的,需要修复.

接下来,您的排序循环有问题。我在下面包括一个希望更容易阅读和理解的内容,删除了逻辑缺陷(以及相当多的其他课外活动):

int insertlist(list *head, char *buffer)
{
    list p=NULL, q=NULL;
    int sc=0;

    /* allocate new node */
    p = calloc(1, sizeof(*p));
    if(3 != sscanf(buffer,"%d %s %f",&(p->id),(p->name),(&p->gpa)))
    {
        printf("info not complete\n");
        free(p);
        return 1;
    }

    /* initially wire p->next to our list head. then, walk list, 
       advancing p->next. break on first "less" condition */
    p->next = *head;
    while (p->next)
    {
        /* broken out here for clarity; break on first "less" */
        sc = strcmp(p->name, p->next->name);
        if (sc < 0 || (sc == 0 && p->id < p->next->id))
            break;
        q = p->next;
        p->next = q->next;
    }

    /* non-null means we wire q->next to p */
    if (q) 
        q->next = p;

    /* else p is the new head; what head was prior is already in p->next */
    else
        *head = p;

    return 0;
}

使用以下输入文件进行测试:

0001 Brook 3.50
0002 James 3.51
0003 Katie 3.52
0004 James 3.87
0005 Brook 2.70

结果:

1  Brook  3.500000

5  Brook  2.700000

2  James  3.510000

4  James  3.870000

3  Katie  3.520000

强烈建议您在尝试修复这些问题以及想要查看代码如何工作时,在调试器中单步执行代码。

最后,不要雪上加霜,你永远不会释放你的名单。即它在程序退出时泄漏内存,这仅次于在“坏”级别执行期间泄漏内存。走那张清单,释放那段记忆。养成一个好习惯。


EDIT OP 请求释放链表:

main()现在,在声明的末尾return就足够了。有时您应该考虑编写一个函数来为您执行此操作:

while (head)
{
    list p=head;
    head=head->next;
    free(p);
}
于 2013-01-15T12:52:04.950 回答
1

您的排序问题是运算符优先级之一

<并且>具有比 更高的优先级=,这意味着它将首先被评估,然后进行分配。

所以你的字符串在这两个地方进行比较:

else if(sc=strcmp((*head)->name,p->name)> 0 || ((sc == 0) && ((*head)->id > p->id)))
...
while(q && ((sc=strcmp(q->name,p->name)<0) || ((sc == 0) && (q->id < p->id))))

错了。sc分别获得strcmp((*head)->name,p->name)> 0and的值strcmp(q->name,p->name)<0(请注意,这将始终是1or 0,从不-1

如果您只是这样调整代码:

else if((sc=strcmp((*head)->name,p->name))> 0 || ((sc == 0) && ((*head)->id > p->id)))
...
while(q && (((sc=strcmp(q->name,p->name))<0) || ((sc == 0) && (q->id < p->id))))

你会看到它工作。故事的寓意:不要吝啬你的括号或括号,添加更多内容不会花费你任何东西,它使代码更清晰,并且它可以让你省去调试这样的麻烦。

于 2013-01-15T13:22:51.927 回答
1

head 是一个指针,因此要在函数中更改它,您需要将指针传递给它。指向指针的指针。

像这样声明:

int insertlist(list **head,char *buffer)

像这样称呼它:

r=insertlist(&(&head),buffer);

然后在函数中更改您引用它的任何地方以取消引用指针。

于 2013-01-15T12:02:24.880 回答