Tagged Questions

0
votes
0answers
78 views

Expression Tree to Infix: Null in one instance, but not in another?

I have an expression tree class, which has a method buildExpressionTreeFromQueue. As its name suggests, the method takes a queue (just a series of operators and operands) and cycles through it, adding …
54
votes
43answers
5k views

Code Golf: Evaluating Mathematical Expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web). Write a function that takes a single argument that is a …
1
vote
2answers
167 views

Writing expressions: Infix, Postfix and Prefix

Greetings, My task is to write an app(unfortunatly on C) which reads expression in infix notation(with variables, unary and binary operators) and store it in memory, then evaluate it. Also, checks …
0
votes
1answer
86 views

Help optimize my RPN evaluation function

Guys, My parser evaluates PEMDAS expressions by first converting from infix to postfix then uses the standard postfix evaluation rules. I parse the expression and store the tokens in a list. This …
0
votes
3answers
121 views

Is it possible to use the pipeline operator to call a method on a returned object?

Is it possible to call a method on a returned object using the pipeline infix operator? Example, I have a .Net class (Class1) with a method (Method1). I can currently code it like this: let myclass …
0
votes
6answers
473 views

What is easiest way to calculate an infix expression using C language?

Suppose the user inputs an infix expression as a string? What could be the easiest ( By easiest I mean the shortest) way to evaluate the result of that expression using C language? Probable ways are …
4
votes
2answers
210 views

Scala match decomposition on infix operator

I'm trying to understand the implementation of Lists in Scala. In particular I'm trying to get my head around how you can write match expressions using an infix operator, for example: a match { …
0
votes
3answers
149 views

How do I extend infix and stack priorities to additional operators?

How would the infix and stack priorities be extended to include the operators <, >, <=, >=, ==, !=, !, &&, and ||? When parsing an infix expression, for example: P + (Q – F) / Y#, …
1
vote
5answers
222 views

Any reason I couldn’t create a language supporting infix, postfix, and prefix functions, and more?

I've been mulling over creating a language that would be extremely well suited to creation of DSLs, by allowing definitions of functions that are infix, postfix, prefix, or even consist of multiple …
4
votes
3answers
145 views

Is it possible to add a method to a built-in type in Scala?

I would like to add a method to a built-in type (say Double), so that I can use an infix operator. Is that possible?