Joanofarc_alter 2022-04-02 18:40 采纳率: 92.9%
浏览 18
已结题

初始化循环链表失败不知道问题何在

想初始化一个循环链表,但不知道问题出在哪里
#include <stdio.h>
#include <stdlib.h>

struct stu{
int data;
struct stu *next;

};
void setup(struct stu **pNode);
int main()
{
//printf("%d",Large);
struct stu *p,*h;
h=NULL;
setup(&h);
for(p=h;p->next!=h;p=p->next){

    printf("%d\t",p->data);
}
return 0;

}
void setup(struct stu **pNode)
{
struct stu *r;
struct stu *temp;
int i;
printf("please in put the number \n");
printf("if i='0' quit\n");

 while(1){
    scanf("%d",&i);
    
    if(0==i) return ;
    if((*pNode)==NULL){
        (*pNode)->data=i;
        (*pNode)->next=*pNode;

    }
    else {
        for(r=(*pNode);r->next!=(*pNode);r=r->next)
            ;//利用循环本身
            temp=(struct stu*)malloc(sizeof(struct stu));
            temp->data=i;
           temp->next=(*pNode);
           r->next=temp;



    }






 }

}

  • 写回答

2条回答 默认 最新

  • CSDN专家-link 2022-04-02 18:56
    关注

    if(( * pNode)==NULL){
    ( * pNode)->data=i;
    ( * pNode)->next= * pNode;

    明知道 * pNode为NULL,怎么还去操作data和next呢???
    要增加指针的空间动态分配

    if((*pNode)==NULL){
            (*pNode) = (struct stu*)malloc(sizeof(struct stu));
            (*pNode)->data=i;
            (*pNode)->next=*pNode;
     
        }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 4月12日
  • 已采纳回答 4月4日
  • 创建了问题 4月2日

悬赏问题

  • ¥15 通联支付网上收银统一下单接口
  • ¥15 angular有偿编写,
  • ¥15 VB.NET使用保存对话框保存图片?
  • ¥15 centos7系统下abinit安装时make出错
  • ¥15 hbuildex运行微信小程序报错
  • ¥15 关于#python#的问题:我知道这个问题对你们来说肯定so easy
  • ¥15 wpf datagrid如何实现多层表头
  • ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。
  • ¥20 网站后台使用极速模式非常的卡
  • ¥20 Keil uVision5创建project没反应