Skip to main content

Questions tagged [postfix]

0 votes
1 answer
240 views

I have a mail server setup with Postfix and Dovecot, and an application server setup with node.js. I have user credentials stored in my application server, and I want to use the same credentials for ...
penalosa's user avatar
  • 449
5 votes
1 answer
2k views

I am trying to make a simple expression parser, in which users type an expression in infix notation (for example ln((1+2)(3-4))) to apply some calculations. To make this possible I need to tokenize ...
JulianSoto's user avatar
4 votes
2 answers
816 views

TL;DR is val name <- more readable than name val <-? I'm designing a semi-concatenative, postfix language. I haven't given much thought to the style in which variable are assigned, and now I ...
Conor O'Brien's user avatar
1 vote
7 answers
7k views

I'm reading Sedgewick's book on algorithms in C and I'm looking for an algorithm to evaluate postfix expressions (addition and multiplication only) without using a stack. I tried to implement one but ...
caisah's user avatar
  • 113
28 votes
11 answers
39k views

I've read that I should avoid the postfix increment operator because of performance reasons (in certain cases). But doesn't this affect code readability? In my opinion: for(int i = 0; i < 42; i++)...
Mateen Ulhaq's user avatar