Top "Infix-notation" questions

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

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 …

stack terminology infix-notation
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 …

infix-notation stack
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 …

c++ stack infix-notation postfix-notation
Infix to postfix algorithm in python

For my data structures class I have to create a basic graphing calculator using Python 3. The requirement is that we …

algorithm python-3.x postfix-notation infix-notation
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 …

java infix-notation
Evaluating a string of simple mathematical expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere …

math parsing code-golf text-parsing infix-notation
infix to postfix conversion for exponentiation operation

I am learning polish notation and i tried a program for infix to postfix conversion. My program executed in a …

c algorithm postfix-notation infix-notation
"Piping" output from one function to another using Python infix syntax

I'm trying to replicate, roughly, the dplyr package from R using Python/Pandas (as a learning exercise). Something I'm stuck …

python pipeline infix-notation
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 …

list scala operator-keyword infix-notation cons
Infix to postfix conversion in Python

I have started solving Data Structure problems in Python. I am implementing infix to postfix but not able to debug …

python stack postfix-notation infix-notation