第一次发帖,多多捧场,问题有点急
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define STACK_INIT_SIZE 20
#define INCERTMENT 10
typedef char elemtype;
typedef struct{
elemtype *top;
elemtype * base;
int stacksize;
......................
阅读全部 | 2012年4月20日 20:38