1. 首页
  2. 行业
  3. 金融
  4. 数据结构后缀表达式的源代码

数据结构后缀表达式的源代码

上传者: 2020-11-06 19:43:13上传 TXT文件 1.5KB 热度 40次
#include "stddef.h" #include "stdio.h" #include "stdlib.h" #include "string.h" #include "ctype.h" #define maxsize 64 #define TRUE 1 #define FALSE 0 #define n 64 typedef int datatype; typedef struct{ datatype data[maxsize]; int top; }seqstack;
下载地址
用户评论