Archived
1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SomeLab/homework2/homework2.cpp
2025-10-24 17:19:46 +08:00

13 lines
155 B
C++

#include<stdio.h>
#include<stdlib.h>
typedef int ElemType;
typedef struct {
ElemType* elem; //基址
int top;
int size;
int increment;
}SqStack;