Advertisement

1 - 10 of 50 containing alltags:("infix") (0 seconds)
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...
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...
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...
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, ...
Zones: C++Date Answered: 02/15/2000 Grade: B Views: 121
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...
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 (+,...
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...
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...
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.
Zones: ProgrammingDate Answered: 03/06/2003 Grade: B Views: 4