顺序栈结构体定义
#include <iostream>
using namespace std;
#define MaxSize 50
typedef struct {
int data[MaxSize];
2025-02-27