鱼C论坛

 找回密码
 立即注册
查看: 2033|回复: 0

c语言链表插入并输出,结果出不来~~~~~~~~~

[复制链接]
发表于 2014-1-1 21:59:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<malloc.h>

#define LEN sizeof(struct student)
struct student
{
        int number;
        char name[10];
        struct student * next;
       
};
//主函数
void main()
{   void print(struct student * head);//声明
    struct student * shanchu(struct student *p3,char k[10]);
        struct student * dig(struct student *p3,char m[10],int n,int u);
    struct student * creat(void);
        struct student * p3,* head1;
        int h,n,u;
       
        char k[10];
        char m[10];
        printf("你想插入哪个人,人名,学号,请输入1,你想删除哪个人,请输入2\n");
    scanf("%d",&h);
        if(h==2)
        {
        scanf("%s",&k);
        p3=creat();
        head1=shanchu(p3,k);
       
        print(head1);
        }
        else
        {
        printf("插入人的姓名及学号,某人前面");
        scanf("%s %d %d\n",m,&n,&u);
        p3=creat();
        head1=dig(p3,m,n,u);
    printf("123456");
        print(head1);
        }

}
//创建链表
struct student * creat(void)
{
    struct student * p1,*p2;
        struct student * head;
        FILE * fp;
        int n=0;
        if((fp=fopen("name2.txt","r"))==NULL)
        {
                printf("cannot open");
                exit(0);
        }
       
        p1=p2=(struct student *)malloc(LEN);
        fscanf(fp,"%d %s\n",&p1->number,&p1->name);
        while(n<30)
        {
                n=n+1;
                if(n>1)
                {
                        p2->next=p1;
                        p2=p1;
            
                }
                else head=p1;
                p1=(struct student * )malloc(LEN);
                fscanf(fp,"%d %s\n",&p1->number,&p1->name);
        }
        p1=NULL;
        fclose(fp);
        return(head);
}
//输出
void print(struct student *  head)
{
        struct student * p;
        p=head;
        if(head!=NULL)
        {
                do
                {printf("%d %s\n",p->number,p->name);
                p=p->next;}
                while(p!=NULL);
        }
}
//删除
struct student * shanchu(struct student * p3,char k[])
{
        struct student *p5;
        struct student * p6,*head2;
        p5=p3;
        head2=p3;
        while(strcmp(k,p5->name)!=0)
        {   p6=p5;
                p5=p5->next;
        }
        if(p5==head2)
        {
                head2=p5->next;
        }
        else if(p5->next==NULL)
        {
                p6->next=NULL;
        }
        else
        {
        p6->next=p5->next;
        }
        return(head2);
}
//插入
struct student * dig(struct student * p3,char m[],int n,int u)
{
  struct student * head3,*p7,*p8,*p0;
  int i=0;
  struct student p;

  p0=(struct student *)malloc(LEN);
  strcpy((p0->name),m);

  p0->number=n;
  
  p8=p3;
  
  while(u!=p8->number)
  {
          p7=p8;
          p8=p8->next;
  }
  p7->next=p0;
  p0->next=p8;
  
  return(p3);
}

链表包含的文本.zip

191.99 KB, 下载次数: 4

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 07:46

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表