标题:这是什么错误呢?
取消只看楼主
zyx1989
Rank: 1
等 级:新手上路
帖 子:86
专家分:2
注 册:2011-9-17
结帖率:83.33%
已结贴  问题点数:20 回复次数:3 
这是什么错误呢?
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#include<string.h>
typedef struct student
{
    int num;
   
    struct student *link;
}stud;

 stud* creat(int n)
{
    stud *h,*p;
    int i;
    h=(stud *)malloc(sizeof(stud));
    if(h==NULL)
    {
        printf("not enough memory!");
        return(0);
    }
    h=NULL;
    for(i=0;i<=n;i++)
    {
        
        
        if((p=(struct student *)malloc(sizeof(stud)))==NULL)
            
            
            
        {
            printf("内存不足!");
            return(0);
        }
        scanf("%d",&p->num);
        
        p->link=h;
        h=p;
        
    }
    return(h);
}
   
  void search(stud *h)
  {
    stud *p;
    int m;
    printf("请输入需查找数据!");
    scanf("%d",&m);
    p=h;
    while(p!=NULL)
    {
   
        if(m==p->num)
        {printf("%d\n",m);
        
         break;
        }
        else
         p=p->link;
    }
         
   
   
   
  }
  stud *delete(stud *h)
  {
      stud *q,*p;
      p=h;
      int n;
      q=h->link;
      printf("请输入要删除的数字!");
      scanf("%d",&n);
      
      while(p!=NULL&&q!=NULL)
      {
          p=p->link;
          q=q->link;
          if(n=q->num)
          p->link=q->link;
          else if
          (n=p->num)
           q=h;
          printf("删除成功!");
      }
      return(h);
  }
 void printf(stud *h)
 {
     stud *p;
     p=h;
     while(p!=NULL)
     {
         printf("%d",p->num);
         p=p->link;
     }
 }
void main()
{
    struct student *h;
   
    h=(struct student *)creat(3);
   
    search(h);
    delete(h);
    printf(h);
}

搜索更多相关主题的帖子: include memory return 
2011-09-25 13:31
zyx1989
Rank: 1
等 级:新手上路
帖 子:86
专家分:2
注 册:2011-9-17
得分:0 
怎么没人回啊
2011-09-25 15:45
zyx1989
Rank: 1
等 级:新手上路
帖 子:86
专家分:2
注 册:2011-9-17
得分:0 
提示没有头文件。ompiling...
Cpp1.cpp
c:\documents and settings\administrator\桌面\cpp1.cpp(67) : error C2059: syntax error : 'delete'
c:\documents and settings\administrator\桌面\cpp1.cpp(68) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\administrator\桌面\cpp1.cpp(68) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.

Cpp1.exe - 1 error(s), 0 warning(s)
2011-09-25 20:02
zyx1989
Rank: 1
等 级:新手上路
帖 子:86
专家分:2
注 册:2011-9-17
得分:0 
不好意思,没看到
2011-09-26 13:07



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




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

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