Archived
1
0

Initial commit

This commit is contained in:
2025-10-24 17:19:46 +08:00
Unverified
commit acc0c9e220
155 changed files with 77369 additions and 0 deletions

12
homework2/homework2.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include<stdio.h>
#include<stdlib.h>
typedef int ElemType;
typedef struct {
ElemType* elem; //基址
int top;
int size;
int increment;
}SqStack;