首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴麦子po的代码贴全部
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define MAX 100
typedef char ElemType;
//定义栈结构体
struct stack
{
    ElemType elem[MAX];
    int top;//顶部下标
};
//初始化栈
......................
阅读全部 | 2019年3月19日 19:30
1
麦子po