Enter Keywords:
1 - 10 of 53(0.001 seconds)
Sort By:
 
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 Rating: 7.8 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 Rating: 7.4 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 Rating: 7.6 Views: 0
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 Rating: 7.0 Views: 168
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 Rating: 5.2 Views: 5
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 Rating: 7.8 Views: 0
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 Rating: 8.8 Views: 4
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 Rating: 7.4 Views: 0
I am currently doing my MCA. 1st Sem. I have a doubt regarding Memory allocation.  when i was trying to convert infix expression to prefix.. I came to know the problem... before that i  used mall...
Zones: CDate Answered: 03/22/2004 Rating: 8.4 Views: 0