weixin_44222515 2019-01-10 11:59 采纳率: 0%
浏览 758

C语言链表插入问题 插入节点到头节点之前去 遍历后发现只能显示插入的那个节点。

#include
#include
#include
#include
struct student{
char name[10];
struct student next;
};
struct student *charu(struct student *p)
{
struct student *current;
struct student *insert;
int a;
insert=(struct student
)malloc(sizeof(struct student));
char name[10];
printf("请输入你要插入的位置:");
scanf("%d",&a);
printf("请输入要插入的字符:\n");
scanf("%s",name);
getchar();
strcpy(insert->name,name);
current=p;
if(a>0)
{}
else if(a==0)
{insert->next=current;
p=insert;
}
return p;
}
void main()
{
struct student head,*non,*end;
char str[10],i,j;
int a;
head=(struct student
)malloc(sizeof(struct student));
printf("请输入名字:\n");
scanf("%s",str);
getchar();
strcpy(head->name,str);
printf("是否要继续输入:");
scanf("%c",&i);
non=head;
while(i!='n')
{
end=(struct student*)malloc(sizeof(struct student));
printf("请输入名字:\n");
scanf("%s",str);
getchar();
strcpy(end->name,str);
non->next=end;
non=end;
printf("是否要继续输入:");
scanf("%c",&i);
}
non->next=NULL;
while(head!=NULL)
{printf("%s\n",head->name);head=head->next;}
getchar();
printf("你是否要插入字符:");
scanf("%c",&j);
if(j=='y')
{
head=charu(head);
printf("插入后的链表为:\n");
while(head!=NULL)
{printf("%s\n",head->name);head=head->next;}
}
}
我插入一个节点第0个位置 就是头结点那个位置 插入完了以后遍历只能显示出第一个节点 这是怎么回事啊请教各位!!

  • 写回答

2条回答 默认 最新

  • weixin_43964021 2019-01-10 13:09
    关注

    struct student *charu(struct student *p) 该处,需要传输的是指针的指针。 具体还需要再调试一下啊。仅传入指针,返回后就不对了。

    struct student *charu(struct student **p)
    {
    struct student *current;
    struct student *insert;
    int a;
    insert=(struct student)malloc(sizeof(struct student));
    char name[10];
    printf("请输入你要插入的位置:");
    scanf("%d",&a);
    printf("请输入要插入的字符:\n");
    scanf("%s",name);
    getchar();
    strcpy(insert->name,name);
    current=*p;
    if(a>0)
    {}
    else if(a==0)
    {insert->next=current;
    *p=insert;
    }
    return p;
    }

    评论

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示