I seem to be having trouble implementing a stack for use in parsing expressions from infix to postfix notation. The code is simply too long to put here, and I am not sure where to problem is, I ha...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10050793.html
Zones:
C++Date Answered: 05/03/1998 Grade: A Views: 0
Would like help with a program to convert mathematical infix notation to postfix. Program should use stacks and queues as part of implementation. Source and header files should make use of stacks a...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10119056.html
Zones:
C++Date Answered: 01/20/1999 Grade: B Views: 0
Hi,
When evaluating infix to postfix using a stack, do I stack the operators in order of precedence onto a stack?
ex: a-b*c/4
I move a over, push the - on the stack, move b over, stack the *, mo...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10184157.html
Zones:
C++Date Answered: 07/20/1999 Grade: A Views: 4
I am able to understand the infix to postfix, however I am having trouble with putting the parentheses back into the infix if I start with postfix.
Have looked at possibility of using 2 stacks, ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10288632.html
Zones:
C++Date Answered: 02/15/2000 Grade: B Views: 121
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20149349.html
Zones:
C++Date Answered: 03/08/2002 Grade: A Views: 0
can anyone give me or tell me where i can get a function which transforms an infix input such as (5*4)+(3/2)%4 to postfix (5 4 3 2 4 * + / %)? i tried searching in programmer's heaver but the funct...
http://www.experts-exchange.com/Programming/Languages/C/Q_20282180.html
Zones:
CDate Answered: 03/30/2002 Grade: B Views: 32
The infix expression arrives to the function in a queue of characters. The returning postfix expression returns as a queue of characters, returned as an argument. The stack is for the operators (+,...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20391338.html
Zones:
C++Date Answered: 01/06/2003 Grade: A Views: 4
Hi there! Please this is really important, I need to know the program (codes) to be used in converting Infix to Posttfix and also how to code the needed data for its solution (specially its evaluat...
http://www.experts-exchange.com/Programming/Programming_Languages/C/Q_20394130.html
Zones:
CDate Answered: 12/29/2002 Grade: A Views: 513
hi, this is my first time but i really need help.
The program i'm writing is a postfix to infix converter in c++, the conversion part concerning the placement of operators is working fine (i'm u...
http://www.experts-exchange.com/Programming/Misc/Q_20523990.html
Zones:
ProgrammingDate Answered: 10/06/2003 Grade: A Views: 0
Make a program about infix calculator?
The user will inter a number using a string and convert it to an integer. Please help me on how to solve this problem.
http://www.experts-exchange.com/Programming/Misc/Q_20540574.html
Zones:
ProgrammingDate Answered: 03/06/2003 Grade: B Views: 4