User profile: alenko92

User info
User name:alenko92
History
Joined:
Number of posts:5
Latest posts:

Postfix to Infix Conversion with multiple digit integers
Thanks, I'll spend some time to understand the logic behind TokenType and enum, thank you so much fo...

Postfix to Infix Conversion with multiple digit integers
And here is the output: Input: {'2','1','+','3','*'}; Output: 9 Explanation: ((2+1)*3) Input: {"4"...

Postfix to Infix Conversion with multiple digit integers
Sure thing, here is my full code: [code]#include <iostream> #include <stack> #include <string> usi...

Postfix to Infix Conversion with multiple digit integers
Hello, I'm currently working in a c++ program that computes postfix expressions and then converts th...

Accept only input chars I want
Hello, I'm fairly new to C++ and I'm constructing a program that defines a FSA, its states, acceptin...