标题:关于数据结构的问题(1)
取消只看楼主
lufeng1720
Rank: 1
等 级:新手上路
帖 子:21
专家分:6
注 册:2009-10-30
结帖率:100%
已结贴  问题点数:20 回复次数:0 
关于数据结构的问题(1)
#include<stdio.h>
#include<stdlib.h>
#define MAXLEN 10
typedef struct
{ int data[MAXLEN];
    int top;
}seqstack;
seqstack *Snull()
{seqstack *s;
    s=malloc(sizeof(seqstack));
    s->top=-1;
    return s;}
int push(seqstack *s,int x)
{if(s->top==MAXLEN-1)
    return 0;
    else
    {s->top++;
        s->data[s->top]=x;
        return 1;}
}
int sempty(seqstack *s)
{if(s->top==-1)
    return 1;
    else
    return 0;
}
int sfull(seqstack *s)
{if(s->top==MAXLEN-1)
    return 1;
    else return 0;
}
int pop(seqstack *s,int *x)
{if(sempty(s))
return 0;
else
{*x=s->data[s->top];
s->top--;
return 1;
}
}
int readtop(seqstack *s)
{if(sempty(s))
    return 0;
    else
    return(s->data[s->top]);
}


main()
{int *x=NULL;
    seqstack *s;
    s=Snull;
    push(s,5);
    printf("%d",readtop(s));
    pop(s,x);
    printf("%d",*x);
}
   
我怎么运行不了啊????????请各位帮忙看看啊!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!这是为什么???????????????????????????
搜索更多相关主题的帖子: 数据结构 
2010-04-21 16:53



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




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

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