用静态栈数据结构实现表达式求值[4]

[入库:2005年8月19日] [更新:2007年3月24日]

本文简介:选择自 fxsjy 的 blog

            int top;

            char array[n];

}opstack;              //存放操作符的栈

四、主要算法:(伪代码)

#define n 50
#define ok 1

#define error 0

#include <ctype.h>

#include <string.h>

typedef struct{

    int top;

    double array[n];

本文关键:用静态栈数据结构实现表达式求值
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top