首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴腾腾的代码贴C语言
第一次发帖,多多捧场,问题有点急
#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
1
腾腾