栈堆

栈堆的定义与操作(last in,first out list)

1.顺序存储:

struct stack_order{
    elementtype data[max];
    int max;//最大容量
    int top;//栈顶位置
}
typedef struct stack_order* stack;

//初始化
stack initial(int max){
    stack s=(stack)malloc(sizeof(struct stack_order));
    s->data[0]=0;
    s->max=max;
    s->top=-1;
    return s;
}

//判断栈是否满了
bool isfull(stack s){
    return (s->top+1==max);
}

//将元素x压入栈中
bool push(stack s,elementtype x){
    if (isfull(stack s))
        return false;//栈满,无法存入
    else{
        s->data[++(s->top)]=x;
        return true;//存入成功
    }
}

//判断栈是否为空
bool isempty(stack s){
    return (s->top==-1);
}

//出栈
bool pop(stack s){
    if (isempty(s))
        return false;//栈为空
    else 
        return (s->data[(s->top)--]);//出栈成功
}

2.链式存储:

typedef struct stack_chain* stack;
struct stack_chain{
    elementtype data;
    stack next;
}

//初始化
stack initial(){
    stack s=(stack)malloc(sizeof(struct stack_chain));
    s->next=null;
    s->data=-1;
    return s;
}

//判断栈是否为空
bool isempty(stack s){
    return (s->next==null);
}

//将元素x压入栈中
bool push(stack s,elementtype x){
    stack p=(stack)malloc(sizeof(struct stack_chain));
    p->next=s->next;
    p->data=x;
    s->next=p;
    return true;
}

//出栈
elementtype pop(stack s){
    if (isempty(s))
        return false;
    else{
        stack p=s;
        s=p->next;
        elementtype temp=p->data;
        free(p);
        return temp;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值