| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1219 人关注过本帖
标题:链表成员赋值
取消只看楼主 加入收藏
浅暗花璃
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2016-3-31
结帖率:77.78%
收藏
已结贴  问题点数:10 回复次数:0 
链表成员赋值

void main(){
    int n;
scanf("%d",&n);
     head=createcode(n);
    head=createnum(head,n);
}

struct student *createcode(int n)
{
    struct student *head,*p,*q;
    int i=0;
    p=(struct student *)malloc(sizeof(struct student));
    printf("plase input code:");
    scanf("%d",&p->code);
    head=p;
    p->next=NULL;
    p->prior=NULL;
    while(1)
    {
        if(i==n)
            break;
            i++;
        q=(struct student *)malloc(sizeof(struct student));
        if(i<n){
           
            printf("plase input code:");
            scanf("%d",&q->code);
            p->next=q;
            q->prior=p;
            p=q;
            
        }
        
    }
    free(q);
   p->next=head;
   head->prior=p;
    return(head);
}



struct student *createnum(struct student *head,int n)
{
    struct student *p,*q;
    int i=0,j=2;
    p=(struct student *)malloc(sizeof(struct student));
    p->num=1;
    head=p;
    p->next=NULL;
    p->prior=NULL;
    while(1)
    {
        if(i==n)
            break;
            i++;
        q=(struct student *)malloc(sizeof(struct student));
        if(i<n){
           
            q->num=j;
            p->next=q;
            q->prior=p;
            p=q;
            j++;
        }
        
    }
    free(q);
   p->next=head;
   head->prior=p;
    return(head);
}


为什么给num赋值时,code 里面值不见了
2016-06-11 21:17
快速回复:链表成员赋值
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.044808 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved