首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴lqx22的代码贴C语言
#include<stdio.h>
#define MAXSIZE 100
typedef int datatype;
typedef struct{
datatype a[MAXSIZE];
int top;
}sequence_stack;
void init(sequence_stack *st)
{
st->top=0;
}
void push(sequence_stack *st,datatype x)
......................
阅读全部 | 2016年9月9日 21:14
#include<stdio.h>
#define MAXSIZE 100
typedef int datatype;
typedef struct{
datatype a[MAXSIZE];
int top;
}sequence_stack;
void init(sequence_stack *st)
{
st->top=0;
}
void push(sequence_stack *st,datatype x)
......................
阅读全部 | 2016年9月9日 21:04
1
lqx22