skully-coder / competitiveprogramming

This repository aims to contain solutions and explanations to various competitive programming problems, which may be important for interviews and online tests of different companies.
https://skully-coder.github.io/competitiveprogramming/
MIT License
39 stars 90 forks source link

converting infix expression to prefix and postfix using stack #156

Closed Sachin19k closed 3 years ago

Sachin19k commented 3 years ago

Is your feature request related to a problem? Please describe. can I add the code for converting infix expression to prefix and postfix using stack

Describe the solution you'd like I will be using stack as ADT and proceeding with the solution

Describe alternatives you've considered I can try stack as ADT or inbuilt stack.

Additional context Add any other context or screenshots about the feature request here.

Sachin19k commented 3 years ago

Please assign this to me. I want to work on it

skully-coder commented 3 years ago

@Sachin19k assigning this to you

Sachin19k commented 3 years ago

Added code. please check