infix-notation
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\');[详细]
2023-01-26 17:26 分类:问答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.[详细]
2023-01-21 15:05 分类:问答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 bigassshadow was blocking everything so i missed the important stuff[详细]
2023-01-17 22:58 分类:问答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. ([详细]
2023-01-11 05:23 分类:问答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[详细]
2023-01-10 15:46 分类:问答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.[详细]
2023-01-05 23:39 分类:问答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)[详细]
2022-12-31 13:54 分类:问答Writing expressions: Infix, Postfix and Prefix
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 for correctnes[详细]
2022-12-08 23:13 分类:问答