Operators are written infix-style when they are placed between the operands they act on (e.g. 2 + 2).

learn more… | top users | synonyms

-1
votes
0answers
93 views

Python stack ADT help evaluate infix expression

I am working on a project for school and our task is to evaluate a infix expression with a stack. We must use the stack class provided for us: class Stack: def __init__(self): self.theStack=[] ...
0
votes
0answers
123 views

Evaluating an infix expression python

My task is to evaluate a fully parenthesized infix expression using a stack. A Stack class has been written for me and I must not change or modify the Stack class. Here are the step by step ...
0
votes
1answer
44 views

Handling extra operators in Shunting-yard

Given an input like this: 3+4+ Algorithm turns it in to 3 4 + + I can find the error when it's time to execute the postfix expression. But, is it possible to spot this during the conversion? ...
0
votes
0answers
23 views

evaluate an infixed expression

I have to evaluate an infixed expression given by the user without converting it to postfix. Here's my code so far: public class Calculator { private static final String OPERATORS = "+-*/%^()"; ...
2
votes
5answers
106 views

Convert a string to an array of strings

If I have: Scanner input = new Scanner(System.in); System.out.println("Enter an infixed expression:"); String expression = input.nextLine(); String[] tokens; How do I scan the infix expression ...
0
votes
0answers
74 views

Making an infix expression Binary Tree

Today I am putting an infix expression into a binary tree by using a stack. This is what I have so far: public String binaryTreeMaker(String infixExpr, int i)//converts and infix to postfix { ...
0
votes
1answer
98 views

Binary Tree Postfix Calculator

I'm making a Postfix calculator where I must use stack objects and a Binary tree during the translation of an expression from infix to a parse tree during the evaluation of a postfix expression. Can ...
0
votes
0answers
54 views

Why isn't my postfix expression being displayed correctly (Java)?

I have an assignment to write a program that converts infix expressions to postfix expressions using a stack. I'm a little unsure on both. My program is close, but not exactly write. I was hoping ...
1
vote
1answer
207 views

Parenthesis error check for infix to postfix conversion Java

I have been working on a program for infix to postfix conversion and have everything working except that I cannot figure out where to put an error check for a missing left parenthesis. Basically the ...
0
votes
1answer
41 views

Conversion from prefix to infix: Null Pointer exception

I am trying to convert an expression from infix to postfix. I've tried debugging the code but I keep getting null pointer exception when the variable is popped. The input for which I get the error is ...
0
votes
1answer
101 views

Calculating and converting prefix to infix

I'm having some serious problems writing a program that convert prefix to infix. I have already written 2 programs which use stacks but do so differently - one used two stacks, the other used one with ...
0
votes
1answer
102 views

Recognizing negative values when converting infix to postfix

This is my class: import java.io.*; import java.util.*; import java.lang.*; import java.util.Scanner; import java.util.List; import java.util.Stack; /** * * @author rtibbetts268 */ public class ...
0
votes
1answer
128 views

Postfix to Infix with minimum number of parentheses

I am looking for algorithm postfix to infix notation which will produce the minimum number of the parentheses. I have found that but it will produce many, many parentheses: ...
0
votes
2answers
273 views

Infix to prefix parenthesis

How would I convert this to where it accepts parenthesis, currently the only thing you can use is like 2 + 4 * 7. i'm having trouble figuring out how to ignore the parenthesis so something like (2 + ...
3
votes
1answer
105 views

Rewrite a monad computation in prefix notation

I'm trying to figure out how to rewrite a monadic computation with prefix notation (not for real practical goals, just for research), but the problem that one lambda doesn't see another one's ...
5
votes
1answer
143 views

How to make a right-associative infix operator?

I have an associative operation >>. The problem is that its cost linearly depends on the size of its left operand. So an expression formed by a sequence of n applications of >> like a ...
1
vote
3answers
159 views

How do I define infix functions in Haskell?

I'd like to define a function as infix, so that users don't have to manually surround the function with backticks to call it. Specifically, I'm writing a DSL-like function that accepts a Rank and Suit ...
0
votes
1answer
1k views

Infix to Postfix using stack

My lecturer gave me an assignment to create a program to convert an infix expression to postfix using Stack. I've made the stack classes and some functions to read the infix expression. But this one ...
0
votes
0answers
505 views

Infix to postfix implementation using linked lists in C

I've been trying to debug this program for a long time. It works fine when i input expressions like a+b-c or a/b+c where the first operator has a greater or equal precedence than the second. But for ...
0
votes
1answer
120 views

Stacks, Queues and reading math from file.. odd output [closed]

Hello again Stackoverflow, I am in the process of creating an infix to postfix calculator. the calculator must read input from a file and then use stacks and queues to create postfix notation. i ...
1
vote
2answers
683 views

Algorithm to evaluate prefix expression?

I have a prefix expression that only has the 4 binary operators(+,-,*,/) .A straight forward way to evaluate such an expression is to convert it to a postfix expression and then evaluate that ...
1
vote
1answer
564 views

java infix calculator

I cant seem to get the inside of the try block to make stacks, I am meant to get a calculator with single digit by using stacks inside the try block. The inside of the try block is giving me ...
2
votes
4answers
158 views

How does Haskell know which function can operate first?

I'm writing a custom language that features some functional elements. When I get stuck somewhere I usually check how Haskell does it. This time though, the problem is a bit to complicated for me to ...
1
vote
2answers
86 views

Brackets needed when using infix approach?

Really simple Scala question. How come the infix approach to 1 + 2 does not need brackets? scala>1 + 2 res7: Int = 3 But the dot approach does? scala>1 .+(2) res8: Int = 3 scala> 1 .+2 ...
0
votes
1answer
224 views

Expression Must have (pointer-to) function type error

I decided it was about time I finished the little infix calculator I started a week ago, and ran into a problem in my evaluate function. My switch statement seems to have an issue with the way I'm ...
0
votes
1answer
2k views

How do I convert an infix expression to a postfix expression?

I am trying to write a C program to convert infix expressions to postfix and calculate with entered values. When I enter (2+14)*5 I get (2 14) 5 * + but it should be 2 14 + 5 *. So my questions: ...
0
votes
2answers
151 views

JavaScript. Infix to Postfix

I am a beginner in JavaScript. This code is supposed to evaluate a postfix expression. But it doesn't work. I think that the code is very logical and I don't really know what's wrong with it. If ...
1
vote
3answers
106 views

why my code has a runtime error? [closed]

When I run this code with an online compiler It has a runtime error.but It shows output(Read the Infix Expression ? ) I donot know why?this code get a infix Expression and give postfix Expression. I ...
0
votes
1answer
249 views

How to evaluate an infix expression in just one scan using stacks?

I want to know if there is a way to solve infix expressions in a single pass using 2 stacks? The stacks can be one for operator and the other for operands... The standard way to solve by shunt-yard ...
1
vote
3answers
207 views

what is benefits for changing from infix to postfix?

I read book today. It introduced algorithm about chaning from infix to postfix.. What is benefits? Thanks in advance.
0
votes
0answers
419 views

InFix to Prefix method class

I'm trying to pinpoint the error in my prefix calculator class but i'm having trouble doing so. The expected output should be something like this: InFix: "2+4" (for example) PostFix: "24+" PreFix: " ...
2
votes
1answer
135 views

ANTLR Expression List Conflict

Here is a basic structure for simple nested expressions... infix : prefix (INFIX_OP^ prefix)*; prefix : postfix | (PREFIX_OP postfix) -> ^(PREFIX_OP postfix); postfix : INT ...
0
votes
1answer
467 views

infix to prefix time and space complexity

I have been working on writing a Java program to convert from infix notation to prefix notation using an operand stack and an operator stack. I have implemented a working converter based on the ...
0
votes
1answer
709 views

Infix to Postfix using stacks and Precedence of Operators

I know there are similar questions to this already on SO but I can't find one which solves the problem I'm having. I am trying to make a method which converts infix notation expressions to postfix ...
4
votes
2answers
165 views

Seg Fault at return statement in function

My program is supposed to convert a prompt from infix to postfix. So far, through a debugger and various other methods, I have located the exact point at which I segfault, but don't understand why. ...
1
vote
1answer
124 views

Convert Content MathML to infix/math notation string in javascript

How do I convert Content MathML (example below), in to an infix or math notation string. For example converting this: <math xmlns="http://www.w3.org/1998/Math/MathML"> ...
-2
votes
1answer
265 views

Evaluate Post order expression

What will be the resulted value of 7 4 3 + - 3 9 2 / + * 2 ^ 5 * It is in post order. So how can I get the value of this expression?
2
votes
3answers
313 views

Postfix to Infix conversation [closed]

I can not solve this expression from postfix to infix. Please help me to understand in detail 5 x y - / x y + 3 ^ 7 / +
1
vote
2answers
565 views

Shunting-yard algorithm in c++

I need a function that takes an infix string (like "3 + 4 * 9"), and convert it to postfix (like "4 9 * 3 +"). I got it working until you throw in parentheses within parentheses. I've been working on ...
7
votes
4answers
7k views

Convert from an infix expression to postfix (C++) using Stacks

My lecturer gave me an assignment to create a program to convert and infix expression to postfix using Stacks. I've made the stack classes and some functions to read the infix expression. But this ...
1
vote
2answers
5k views

infix to postfix conversion program(java)

I was working on a infix to postfix program(using stacks) but after all those efforts, something went wrong somewhere.I am getting the output as infix without conversion, please check if my intopost ...
0
votes
0answers
850 views

Infix to Postfix calculator, implement sin cos and X&Y variables?

I'm pretty green at C++, and I have to make an infix to postfix calculator that supports sin() and cos(), and it has to be a 2 variable function, something like z=3x*sin(3+4y), I already got the ...
0
votes
3answers
107 views

Can't push values into stack from command line arguments in Java

I have a weird problem in java. I am trying to make a math expression calculator which would evaluate an infix math expression and return the final result on the screen. I have used stacks to ...
0
votes
2answers
2k views

Infix expression evaluation [closed]

I would like to evaluate(not convert) infix expression in C++. If you posses algorithm or even implementation of such algorithm(may be not C++, any language... I will try to rewrite it to C++) share ...
0
votes
0answers
948 views

Evaluation of infix(normal) expression in C++ using STACK [closed]

I am looking for infix(the same people normally use) expression evaluation code using STACK(it is a part of bigger program), but I only found the conversion between postfix/prefix/infix, but I look ...
4
votes
2answers
247 views

Common lisp: is there a less painful way to input math expressions?

I enjoy common lisp, but sometimes it is really painful to input simple math expressions like a(8b^2+1)+4bc(4b^2+1) (Sure I can convert this, but it is kind of slow, I write (+ () ()) first, and ...
4
votes
1answer
242 views

How to convert user-friendly infix math code to Clojure code?

I want user to be able to input like this: 5+6*t+sin(2*t) , so it will get converted to this: (+ 5 (* 6 t) (sin (* 2 t))) , so I can eval it to some function that will be JITted and executed ...
2
votes
1answer
609 views

Good Infix to Prefix implementation in Python that covers more operators (e.g. <, <=, etc) of a C program?

I have been looking without much luck for an implementation of Python that converts infix to prefix that ranges on a sufficient amount of arithmetic and logic operators and care about its properties ...
-1
votes
3answers
430 views

Infix to Postfix with function support

There are many algorithms to convert infix to postfix all over the web. But my question is how to make that to support functions? For example sin(x+y)*z. I will appreciate a code.
3
votes
1answer
1k views

Postfix to infix converter Objective C

I am trying to make an RPN calculator program and want to have a label which shows the expression you entered. If you enter 3,5,4,+,/ the label would show ((4+5) / 3). I am having trouble implementing ...

1 2 3