Initial commit
This commit is contained in:
12
homework2/homework2.cpp
Normal file
12
homework2/homework2.cpp
Normal 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;
|
||||
|
||||
Reference in New Issue
Block a user