Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
341 views

Why is JavaScript's postfix notation different from C and Perl?

I'm studying for an exam on JavaScript at the moment. I've also got a little knowledge of C and Perl so I'm familiar with prefix and postfix notation in all three languages. I did an online practice ...
3
votes
3answers
770 views

Can this Python postfix notation (reverse polish notation) interpreter be made more efficient and accurate?

Here is a Python postfix notation interpreter which utilizes a stack to evaluate the expressions. Is it possible to make this function more efficient and accurate? #!/usr/bin/env python ...
2
votes
1answer
135 views

How to put postfix expressions in a binary tree?

so i have a binary tree and a postfix expression "6 2 * 3 /" what is the algo to put it in a tree? like, [/] / \ [*] [3] / \ [6] [2]
2
votes
1answer
43 views

Regular expression to split greedy but keep split token?

I have a string like: {A}{B}={C}{D}<{E}{F}<= What I want to do is split that string using a regular expression so as to get something like: 1: {A}{B}= 2: {C}{D}< 3: {E}{F}<= I'm ...
2
votes
2answers
168 views

Need help in implementing Java Algorithm on Postfix Evaluation

I've tried writing this code from scratch, coding, and running it but it just doesn't seem to work. This was assigned as lab work in class. The requirements are: Implementing a postfix evaluation ...
1
vote
1answer
115 views

postfix -expression evaluation

I am trying to implement postfix-expression evaluation, here is my code: #include<iostream> #include<string.h> using namespace std; template < class T > class Stack { private: T ...
1
vote
2answers
159 views

Evaluating postfix expression using recursion

I need an algorithm for evaluating postfix expression using recursion. In this postfix expression an operand can be of more than one digit. A space is used to distinguish between two operands. So an ...
0
votes
1answer
59 views

Evaluating a PostFix Expression in C (New Issue)

My previous question can be found here (just want to provide assurance to this most helpful community that I'm not trying to spam questions): Evaluating a postfix Expression in C My problem involves ...
0
votes
2answers
90 views

Evaluating a postfix Expression in C

I'm trying to write a program that evaluates a postfix arithmetic expression. The program sends a character string to my function evaluatePostfix, which proceeds to identify operands and operators and ...
0
votes
2answers
275 views

Postfix notation validation?

What would be a good way to evaluate a string(array, something) that contains a postfix expression(ex: 3 5 +) to check for validity?
-1
votes
1answer
101 views

postfix evaluator not working

Possible Duplicate: How can I print the value in this stackT? for some reason, when I execute this program with the following expression 12 12 * 66 + it returns an invalid and negative ...
-2
votes
1answer
579 views

Postfix to Infix expression conversion algorithm [closed]

Can anyone provide me with any resource relating to Postfix to Infix expression conversion algorithm? Examples would be much helpful.