代码搜索:postfix

找到约 738 项符合「postfix」的源代码

代码结果 738
www.eeworm.com/read/225996/4789047

postfix

#!/bin/sh # Gerben Wierda, Oct 2001. Adapted from an existing example. I waive every # copyright on this and I also do not give any warranty. # Updated Sepember 29, 2002 # To work properly, the POST
www.eeworm.com/read/189769/8455385

obj postfix.obj

www.eeworm.com/read/189769/8455387

exe postfix.exe

www.eeworm.com/read/189769/8455389

cpp postfix.cpp

#include #include #include #include #include char oper[2][100]={{'+','-','*','/','^'}, {1, 1, 2, 2, 3 }}; class S
www.eeworm.com/read/386291/8757500

java postfix.java

// postfix.java // parses postfix arithmetic expressions // to run this program: C>java PostfixApp import java.io.*; // for I/O ///////////////////////////////////////////////////////
www.eeworm.com/read/285689/8823053

c postfix.c

/************************************************/ /*将一个中缀表达式,转换为与它等价的后缀表达式 */ /* 文件名postfix.c,函数名postfix() */ /************************************************/ void postfix(cha
www.eeworm.com/read/382052/9055854

c postfix.c

#include #include "Tree.h" void postfix(Tree T, void process(TreeElementType)) /*L.*/ /* NB. process is a procedure formal-parameter. A*/ { if( T != NULL )
www.eeworm.com/read/181725/9240070

h postfix.h

//后缀表达式类Postfix的声明 class Postfix { private: int a,b; char Theta; LinkStack OPND2; public: void PostExpress(string &exp); int Operate(int a, char theta, int b); }; //后缀表达式计算函
www.eeworm.com/read/178379/9404341

chm postfix.chm

www.eeworm.com/read/365949/9838642

cpp postfix.cpp

//这个程序在本书所带软盘中,文件名为POSTFIX.CPP //这个程序将演示后缀增值、减值运算在表达式中的应用。 #include void main(void) { int num1, num2,num3; int i = 1, j = 2, k = 3; int count = 4, x = 10, num = 20; int a