栈具体操作实现

详细说明:https://blog.csdn.net/qq_43643944/article/details/115281425

1、顺序栈
#include <iostream>

using namespace std;
const int MAX = 10;
typedef int ElemType;
struct SqStack {
    ElemType data[MAX];//存放栈中元素
    ElemType top;// 栈顶指针,指向栈顶元素
};

void InitStack(SqStack &S) {//初始化栈
    S.top = -1;
}

bool push(SqStack &S, ElemType val) {//入栈
    if (S.top == MAX - 1)
        return false;
    S.data[++S.top] = val;
    return true;
}

bool pop(SqStack &S, ElemType &e) {//出栈
    if (S.top == -1)
        return false;
    e = S.data[S.top--];
    return true;
}

int main() {
    SqStack S;
    InitStack(S);
    ElemType e;
    push(S, 1);
    push(S, 2);
    push(S, 3);
    push(S, 4);
    push(S, 5);
    cout << "遍历栈中元素:";
    for (int i = S.top; i > -1; --i) {
        cout << S.data[i] << " ";
    }
    cout << endl;
    pop(S, e);
    cout << "出栈元素为:" << e << endl;
    cout << "遍历栈中元素:";
    for (int i = S.top; i > -1; --i) {
        cout << S.data[i] << " ";
    }
    return 0;
}

在这里插入图片描述

2、链栈
#include <iostream>

using namespace std;
typedef int ElemType;
typedef struct LNode {//链表节点
    ElemType data;
    struct LNode *next;
} LNode, *LinkList;
struct LinkStack { //链栈
    LinkList top;//top指针,指向栈顶
    int count;//计数器,统计栈内元素个数
};

bool InitStack(LinkStack &S) {//初始化链栈
    S.top = NULL;
    S.count = 0;
    return true;
}

bool push(LinkStack &S, ElemType val) {//进栈
    LNode *p = (LNode *) malloc(sizeof(LNode));
    if (p == NULL)
        return false;
    p->data = val;
    p->next = S.top;
    S.top = p;
    S.count++;
    return true;
}

bool pop(LinkStack &S, ElemType &e) {//出栈
    if (S.top == NULL)
        return false;
    e = S.top->data;
    LNode *q = S.top;
    S.top = S.top->next;
    S.count--;
    free(q);
    return true;
}

int main() {
    LinkStack S;
    InitStack(S);
    ElemType e;
    push(S, 1);
    push(S, 2);
    push(S, 3);
    push(S, 4);
    push(S, 5);
    LNode *p = S.top;
    cout << "遍历栈中元素:";
    while (p != NULL) {
        cout << p->data << " ";
        p = p->next;
    }
    cout << endl;
    pop(S, e);
    cout << "出栈元素为:" << e << endl;
    cout << "遍历栈中元素:";
    p = S.top;
    while (p != NULL) {
        cout << p->data << " ";
        p = p->next;
    }
    return 0;
}
 

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Missヾaurora

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值