Vocab Bloom Hub

postfix notation

/ˈpoʊstfɪks noʊˈteɪʃən/

Перевод: Математическая нотация, в которой оператор следует за своими операндами, также известная как обратная польская запись (ОПЗ), обычно используемая в стековых вычислениях и языках программирования.

1 статья

phrase

C1formalcommontechnical/ˈpoʊstfɪks noʊˈteɪʃən/

A mathematical notation in which the operator follows its operands, also known as Reverse Polish Notation (RPN), commonly used in stack-based calculations and programming languages.

  • 🇷🇺Математическая нотация, в которой оператор следует за своими операндами, также известная как обратная польская запись (ОПЗ), обычно используемая в стековых вычислениях и языках программирования.
  1. Reverse Polish Notation C2 formal

    A mathematical notation in which operators follow their operands, eliminating the need for parentheses to define operation order.

    • In postfix notation, the expression '3 4 +' is equivalent to '3 + 4' in standard notation.
    • Postfix notation is commonly used in stack-based programming languages and calculators.
    • The algorithm evaluates postfix notation by scanning from left to right and using a stack.

    🇷🇺Обратная польская запись