数据结构后缀表达式的源代码
#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;
下载地址
用户评论