C语言链表问题,高分悬赏,请问这2哥函数怎么用,还有struct node*h = createlist()是什么意思 100
#include<stdio.h>#include<stdlib.h>structnode{intdata;structnode*next;};structnode*cr...
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
};
struct node* createlist()
{
int data;
struct node*p,*q=NULL,*h=NULL;
while(1)
{
if((data=getchar())!='\n'&&data!=32)
{
p=(struct node*)malloc(sizeof(struct node));
p->data =data;
if(h==NULL) /*the first tree*/
h=p;
else
q->next=p;
q=p;
}
else if(data=='\\')
break;
}
if(q!=NULL)
q->next =NULL;
return h;
}
int main()
{
struct node * h = createlist();
return 0;
displist();
}
int displist(struct node*h)
{
struct node*p =h;
while(p!=NULL)
{
printf("%4c",p->data);
p=p->next ;
}
} 展开
#include<stdlib.h>
struct node
{
int data;
struct node *next;
};
struct node* createlist()
{
int data;
struct node*p,*q=NULL,*h=NULL;
while(1)
{
if((data=getchar())!='\n'&&data!=32)
{
p=(struct node*)malloc(sizeof(struct node));
p->data =data;
if(h==NULL) /*the first tree*/
h=p;
else
q->next=p;
q=p;
}
else if(data=='\\')
break;
}
if(q!=NULL)
q->next =NULL;
return h;
}
int main()
{
struct node * h = createlist();
return 0;
displist();
}
int displist(struct node*h)
{
struct node*p =h;
while(p!=NULL)
{
printf("%4c",p->data);
p=p->next ;
}
} 展开
2个回答
展开全部
struct node* createlist()
这是一个函数,返回类型是struct node*,那么struct node* h = createlist();就是让h等于createlist()函数返回的指针。
main函数中的
return 0;
displist();
displist()函数这样是不会执行的,因为return 0已经表示返回了。
这是一个函数,返回类型是struct node*,那么struct node* h = createlist();就是让h等于createlist()函数返回的指针。
main函数中的
return 0;
displist();
displist()函数这样是不会执行的,因为return 0已经表示返回了。
追问
那怎么操作啊。我网上找到一个
typedef struct NodeType
{
ElemType data;
struct NodeType *next;
} NodeType,*LinkType;
这个时候 linktype是带*的
void output(LinkType head)
,为什么调用的时候就没有 * 了呢,能不能加个Q.Q,我有好多问题,分数当然不是问题
追答
可以 60 56 45324
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询