mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-08 21:36:36 +00:00
Wanted to add infix to postfix conversion program using stack in c #86
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @UG-SEP on GitHub (Apr 8, 2021).
Hey,
I saw there is no program related to infix to postfix conversion program can i add
Example
Input: a+b * c
Output: abc * +
Please assign me
Thanks
@Panquesito7 commented on GitHub (Apr 8, 2021):
There's already an Infix to Postfix algorithm here. You can create a Postfix to Infix algorithm, though. 🙂