标题:建立一个有n个结点的单链表,要求从尾部进行插入
只看楼主
pantaibiao
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2009-10-9
结帖率:0
已结贴  问题点数:5 回复次数:1 
建立一个有n个结点的单链表,要求从尾部进行插入
菜鸟先飞    谁能用C语言编写以上问题?摆脱了
搜索更多相关主题的帖子: 尾部 单链 结点 
2009-10-09 16:55
sen_lin
Rank: 6Rank: 6
等 级:侠之大者
威 望:3
帖 子:114
专家分:436
注 册:2009-3-24
得分:5 
#include "stdio.h"  
#include "stdlib.h"  
#define N 3  
  
struct student {  
    int c;  
    struct student *next;  
};  
  
  
struct student* gethead() {  
  
    int i;  
  
    struct student *head,*p,*q;  
  
    head=malloc(sizeof(struct student));  
    head->next=NULL;  
  
    p=malloc(sizeof(struct student));  
    scanf("%d",&p->c);  
  
    head->next=p;  
    q=p;  
  
    p->next=NULL;  
  
    for(i=0;i<N-1;i++) {  
  
        p=malloc(sizeof(struct student));  
        scanf("%d",&p->c);  
        q->next=p;  
        p->next=NULL;  
        q=p;  
         
    }  
return head;
}  
  
  
看这个可以不
2009-10-10 12:39



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-287980-1-1.html




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

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