Postfix notation

постфиксная нотация, постфиксная запись известна также под названием "обратная польская запись". Метод бесскобочной записи математических выражений, при котором операция записывается после операндов, например, (2+3) * (4+5) в постфиксной нотации будет выглядеть так: 2 3 + 4 5 + *. Такая запись используется, в частности, в языке Forth Смотри также: infix notation, notation, postfix expression, prefix notation, RPN

Англо-русский словарь компьютерных терминов

Postfix notation

постфиксная нотация, постфиксная запись

Англо-русский политехнический словарь

Postfix notation

noun reverse Polish notation

Merriam-Webster's Collegiate Dictionary

Postfix notation

(Or "Reverse Polish Notation", RPN) One of the possible orderings of functions and operands: in postfix notation the functions are preceded by all their operands. For example, what may normally be written as "1+2" becomes "1 2 +". Postfix notation is well suited for stack based architectures but modern compilers reduced this advantage considerably. The best-known language with postfix syntax is FORTH. Some Hewlett-Packard calculators use it, e.g. HP-25, HP-29C, HP-41C, HP-23SII. Compare: infix notation, prefix notation.

Free Online Dictionary of Computing