typedef struct node{ int x;struct *next;}LNode,*LinkList; LNode *p;LinkList q;请问p,q的区别??

 我来答
li446729462
2011-09-27 · TA获得超过131个赞
知道小有建树答主
回答量:130
采纳率:100%
帮助的人:90.6万
展开全部
struct node{ int x;struct *next;} //定义了一个结构体
typedef 的意思是用后面的名字代替struct node{ int x;struct *next;}
意思就是LNode代表了你定义的结构体
后面还定义了结构体指针,*LinkList
LNode *p 为定义了一个指向结构体的指针p
LinkList q,这句话的意思还是定义了一个结构体二级指针
所以整体来说 p 和 q基本无区别
滑采莲
2011-09-26 · TA获得超过234个赞
知道答主
回答量:518
采纳率:0%
帮助的人:285万
展开全部
#include <stdio.h>
typedef struct student
{
int id;
char name[20];
float score;
}elemtype;
elemtype stu[ ]=,,};
typedef struct list_type
{
elemtype data[3];
int num;
}listtype;

int insert1 (listtype *l,int i,elemtype x);

int main()
{
int i;
listtype lt;
lt.num = 0;

for (i=0;i<3;i++)
{
printf("%d,%s,%f",stu[i].id,stu[i].name,stu[i].score);
}
insert1(<, 0, stu[2]);
insert1(<, 1, stu[1]);
insert1(<, 2, stu[0]);
printf("\nresult:\n");
for (i = 0; i < lt.num; i++)
{
printf("%d, %s, %f\n", lt.data[i].id, lt.data[i].name, lt.data[i].score);
}
return 0;
}

# define true 0
# define false 1
int insert1 (listtype *l,int i,elemtype x)
{
int j;
if (l->num>=3)
{
printf("the list is full,can not insert.");
return(false);
}
if ((i<0)||(i>l->num))
{
printf("i is invalid value");
return(false);
}
for (j=l->num-1;j>=i;j--)
l->data[j+1]=l->data[j];
l->data[i]=x;
l->num++;
return(true);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
朋御天下
2011-09-25 · 超过58用户采纳过TA的回答
知道小有建树答主
回答量:176
采纳率:40%
帮助的人:94.9万
展开全部
首先要清楚typedef的用法“struct node{ int x;struct *next;}”这其实是一个匿名类型,“typedef struct node{ int x;struct *next;}LNode,*LinkList;”这句话其实就是定义一个就个体类型LNode,和一个结构体指针类型*LinkList。所以p,q都是给结构体指针类型。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lcwang0635
2011-09-25 · TA获得超过111个赞
知道答主
回答量:49
采纳率:0%
帮助的人:42.6万
展开全部
无区别
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
1921768786
2011-09-26 · 超过66用户采纳过TA的回答
知道小有建树答主
回答量:453
采纳率:0%
帮助的人:121万
展开全部
无区别
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式