Infix to Postfix Conversion Using a Stack

Опубликовано: 05 Июнь 2021
на канале: Ethan Myles
4,540
58

Converting, infix notation to postfix notation, and postfix evaluation using the stack data structure.

Java code for infix to postfix notation, including the steps the stack goes through during the conversion in the output: https://github.com/Ethan-Myles/Infix-...

Chapters:
00:00 Introduction
00:12 What is Infix and Postfix Notation ?
00:52 Operands and Brackets
01:40 Operators
02:14 Conversion Examples
06:54 Postfix Characters
07:52 Postfix Evaluation Examples
10:47 Java Code