Tagged Questions
The infix tag has no wiki summary.
70
votes
43answers
7k 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
...
9
votes
2answers
172 views
Haskell infix function application precedence
Let f x y = x * y. We can apply this function in two ways: f 5 6, or, using infix notation, 5 `f` 6. Do the operator rules apply to this last expression? What precedence will this application have? Is ...
8
votes
3answers
268 views
Automatic lifting of infix operators to monadic infix operators
One of the nice things about Haskell is the ability to use infix notation.
1 : 2 : 3 : [] :: Num a => [a]
2 + 4 * 3 + 5 :: Num a => a
But this power is suddenly and sadly lost when the ...
5
votes
3answers
110 views
Scala Map, ambiguity between tuple and function argument list
val m = scala.collection.mutable.Map[String, Int]()
// this doesn't work
m += ("foo", 2)
// this does work
m += (("foo", 2))
// this works too
val barpair = ("bar", 3)
m += barpair
So what's the ...
5
votes
2answers
183 views
Syntax for partial application of curried functions with reverse-associative infix notation
In other words, is there a good reason why this shouldn't compile?
def f(xs: List[Int]) = xs.foldLeft(0) _ // OK
def f(xs: List[Int]) = (xs :\ 0) _ // OK
def f(xs: List[Int]) = (0 /: xs) _
...
5
votes
2answers
522 views
Understanding infix method call and cons operator(::) in Scala
I'm quite new to Scala programming language, and was trying something out stucked in my mind while I was following the lecture notes at here.
I think I couldn't really understand how cons operator ...
5
votes
2answers
628 views
Scala DSL, Object and infix notation
in Scala, if I want to implement a DSL, is there a way to do the following:
I have an Object called "Draw" which contains the function def draw(d:Drawable)
how can I make it so that I can import the ...
5
votes
3answers
196 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?
4
votes
2answers
102 views
Scheme: Lists of three dotted elements returning strangely (like an infix operator?)
I am a new Scheme/Racket student, so please excuse any blatant syntax errors.
It came up in class today that the scheme list '(a, b, c) should be invalid, but when we ran it, it returned:
>'(a ...
4
votes
4answers
449 views
When to use parenthesis in Scala infix notation
When programming in Scala, I do more and more functional stuff. However, when using infix notation it is hard to tell when you need parenthesis and when you don't.
For example the following piece of ...
3
votes
7answers
663 views
What do Push and Pop mean for Stacks?
long story short my lecturer is crap, and was showing us infix to prefix stacks via an overhead projector and his bigass shadow was blocking everything so i missed the important stuff
he was ...
3
votes
3answers
1k views
C++ infix to postfix conversion for logical conditions
I want to evaluate one expression in C++. To evaluate it, I want the expression to be converted to prefix format.
Here is an example
wstring expression = "Feature1 And Feature2";
Here are ...
2
votes
1answer
360 views
Does Solr Suggester support infix search?
The wiki page of the Solr Suggester component does not mention how the provided field is searched? Is it a prefix only, or is there also an infix search possible?
2
votes
2answers
1k views
Converting infix notation expression to postfix notation
I'm doing an assignment for my Data Structures course where I have to convert an infix expression to a postfix expression. I'm almost done with it but I keep getting an error when I try entering ...
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
3answers
2k views
prefix to infix on stack
I'm trying to implement prefix to infix in c++, that's what i've got so far. The input should be for example something like this:
/7+23
And the ouput:
7/(2+3) or (7/(2+3))
But instead I get:
...
2
votes
5answers
419 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 ...
1
vote
3answers
84 views
Using unicode symbol as an infix operator in Scala
Does anyone know why the following code doesn't recognize ∙ as a valid infix operator?
object Main extends App {
val c = (I() ∙ I())
}
sealed abstract class Term
case class I() extends Term
case ...
1
vote
1answer
208 views
Recognizing Parenthesis in an Infix to Postfix Conversion
Here is a java class I had to make for my data structures class. I know that this is far from the best way to do the conversion, but it is off of the pseudo code he gave in class and is therefor what ...
1
vote
0answers
72 views
Validating an infix expression
I'm trying to validate infix expressions.
So far, I've developed code that can detect a large percentage of invalid infix expressions, but for some reason, the case "( ( ( ) ) ) 5" is not detected ...
1
vote
2answers
216 views
Sphinx search for exact match and then infix matches
I am using Sphinx to provide search to a website and I've run across a bit of a snag when returning relevant results.
To keep my question simple, let's assume that I have two fields, @title and ...
1
vote
3answers
611 views
prefix to infix in python
I am writing a small calculator (with prefix notation) and I'm curious how I'd convert prefix notation to infix notation. I currently have a function, but it's being weird, and I'm not sure how to fix ...
1
vote
1answer
51 views
Standard ML, Infix identifier ERROR code
exception div;
fun f(x,y) =
let
val before = 2.0 * x + 3.0 * y
in
(before + (1.0 / (if x > 0.0001 then x else raise div)) + 2.0 / y) handle div => before / ...
1
vote
2answers
145 views
How to analyse a algebraic expression
I am going to make a program that can analyse a algebraic expression.
For example:
<?php
echo cal ('5*5+2*2');
?>
My program will know that it will multiply 5 with 5 and 2 with 2 first, then ...
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. ...
1
vote
2answers
1k 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 ...
1
vote
6answers
2k 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 ...
0
votes
0answers
35 views
Convert infix to postfix in YACC(Bison)
I have been trying to convert an infix expression to postfix expression using YACC(Bison) with no success. I would like to know how it can be done? Sample code will be awesome :)
0
votes
1answer
49 views
Infix to Postfix transformation with variables & functions from math.h (to determine symbolic integral later on)
Well hello everyone.
This code has given me a whole lot of a hard time. Didn't know how to appoach it etc.
Finally i got some idea, how to convert it to postfix notation (RPN).
This is my code, but ...
0
votes
2answers
151 views
Can a string in infix notation be converted to prefix notation using only queues ? (consider the case where the only operations are + and -)
public class Convert{
/* the algorithm works as follows after inserting all elements of infix string
into an empty Queue iterate over queue for infix.length() number of times and
check if element ...
0
votes
4answers
327 views
How to calculate expression in java?
How to calculate user given Expression in java.
E:g, if the given exp is 3*4+(5*6)
how to calculate this. can anyone help me out.
0
votes
1answer
109 views
Validate expression/infix in python
My question is simple. How to validate expression/infix in python? Is it possible?
For example:
a-d*9
5-(a*0.3-d+(0.4-e))/k*5
(a-d*9)/(k-y-4.3*e)+(t-7*c)
0
votes
3answers
336 views
Validating an infix notation possibly using regex
I am thinking of validating an infix notation which consists of alphabets as operands and +-*/$ as operators [eg: A+B-(C/D)$(E+F)] using regex in Java. Is there any better way? Is there any regex ...
0
votes
0answers
136 views
What is the running time of the translation of infix to postfix using queue and stack?
In c++...
I know the time complexities for the individual functions of queue and stack, but I don't know what the time complexity for an infixToPostfix function would be, using both queue and ...
0
votes
0answers
295 views
Tokenizing an expression for infix to postfix evaluation
How can I tokenize an expression to include operations when I am converting an infix expression to a postfix expression in java?
For example,
String delims = " \/t[]()+=*"
String str = a + b / c - ...
0
votes
1answer
1k views
Prefix to Infix Conversion Algorithm with figure
After some google search I find it!
Prefix to Infix
This algorithm is a non-tail recursive method.
The reversed input string is completely pushed into a stack.
prefixToInfix(stack)
1) IF ...
0
votes
1answer
562 views
C programming expression tree to postfix to solution using lines read from a file
I am terribly new at C programming.
I have stumbled upon a few answers. Some using the old syntax.
The problem is I have to create a program the will read a text file and use the read postfix lines ...
0
votes
1answer
371 views
Getting wrong outputs in infix to postfix application with java
i recently wrote a java program that takes an infix expression and converts it into a postfix expression. It works for the most part but i am getting wrong outputs for some expressions. For example ...
0
votes
1answer
459 views
infix to postfix
I've been trying to figure out this problem.
I have an assignment to make a basic calculator.
To do so i need the instructions in postfix.
I have found some code online, which worked but used ...
0
votes
1answer
521 views
Help optimize my RPN evaluation function
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
291 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
3answers
209 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
votes
2answers
504 views
a code for infix to postfix conversion
I have written a code for infix to postfix conversion,This piece of code is not encountering any kind of compile time error but after taking the input infix expression it is giving some runtime errors ...