Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
707 views

Efficiency of stack-based expression evaluation for math parsing

I have to write, for academic purposes, an application that plots user-input expressions like: f(x) = 1 - exp(3^(5*ln(cosx)) + x) The approach I've chosen to write the parser is to convert the ...
5
votes
4answers
1k views

How can I modify my Shunting-Yard Algorithm so it accepts unary operators?

I've been working on implementing the Shunting-Yard Algorithm in JavaScript for class. Here is my work so far: var userInput = prompt("Enter in a mathematical expression:"); var postFix = ...
3
votes
1answer
170 views

Preserving Parenthesis in Shunting Yard

I'm working on what is essentially the shunting yard algorithm, but moving infix to prefix instead of RPN I am trying to preserve parenthesis, and I'm having a devil of a time of it. Currenntly my ...
3
votes
2answers
276 views

Shunting-yard: missing argument to operator

I'm implementing the shunting-yard algorithm. I'm having trouble detecting when there are missing arguments to operators. The wikipedia entry is very bad on this topic, and their code also crashes for ...
2
votes
1answer
260 views

Shunting-yard Algorithm

I'm working on implementing an infix-calculator in Clojure, which starts with me implementing Dijkstra's Shunting-yard Algorithm. I thought I had it down pretty well, but joke's on me, it doesn't seem ...
2
votes
2answers
226 views

Haskell Function Returning Empty List

I'm really an absolute newbie at Haskell, so I'm at a total loss as to how to debug some functions I wrote. When I call shuntingYard ["3+4"] I get back [], whereas I want to get back [34+]. Any and ...
2
votes
3answers
284 views

Shunting Yard implementation in PHP needed, interpret and parse a string perform a mathematical comparison and return a boolean result

I'm looking for something that can interpret a string in php and perform simple math calculation, and then return a boolean result as to whether the expression is true or false. For example: Sue ...
2
votes
3answers
308 views

Which of the following postfix notations correctly represents infix sum 1+2+3+4?

I am testing an infix-to-postfix-to-infix converter and found some kind of uncertainty. For example, a simple infix sum 1 + 2 + 3 + 4 can be converted to postfix one 1 2 + 3 + 4 + assuming that ...
2
votes
2answers
322 views

Is there a simple way I can tokenize a string without a full-blown lexer?

I'm looking to implement the Shunting-yard Algorithm, but I need some help figuring out what the best way to split up a string into its tokens is. If you notice, the first step of the algorithm is ...
1
vote
4answers
84 views

Trouble understanding what to do with output of shunting-yard algorithm

I've been looking at the wiki page: http://en.wikipedia.org/wiki/Shunting-yard_algorithm I've used the code example to build the first part, basically I can currently turn : 3 + 4 * 2 / ( 1 - 5 ) ^ ...
1
vote
2answers
104 views

cannot convert from 'void' to 'Token' (C++)

Edit: Added token struct/enum to code block I'm new to c++, so forgive me if I missed something obvious. I'm trying to write a c++ version of the Shunting Yard Algorithm, but it won't compile because ...
1
vote
2answers
815 views

Problems with a shunting yard algorithm

I have successfully implemented a shunting yard algorithm in java. The algorithm itself was simple however I am having trouble with the tokenizer. Currently the algorithm works with everything I want ...
1
vote
1answer
270 views

Common Lisp Error: Expected-type: REAL datum: NIL

I'm working on actually writing something on my own in Common Lisp for once, implementing the Shunting-yard Algorithm. I thought it went okay, even if it came out rather ugly and if I doubt its ...
1
vote
2answers
115 views

Trying to write a parser

I'm trying to parse a syntax using the Shunting Yard (SY) algorithm. The syntax includes the following commands (they're are many many others though!) a + b // a and b are numbers setxy c d //c,d can ...
1
vote
1answer
885 views

Postfix to infix with unary/binary operators

I am trying to make a converter from postfix to infix notation and need some help. There is already a question about infix-to-postfix conversion, which gives an example I am failing to convert back. ...
0
votes
1answer
188 views

Processing a Comma Separated List Before Shunting-Yard

So I'm processing some math from XML strings using the Shunting-Yard algorithm. The trick is that I want to allow the generation of random values by using comma separated lists. For example... ( ( 3 ...
0
votes
3answers
901 views

Dijkstra’s algorithm and functions

the question is: suppose I have an input function like sin(2-cos(3*A/B)^2.5)+0.756*(C*D+3-B) specified with a BNF, I will parse input using recursive descent algorithm, and then how can I use or ...