Programs on Stack and their Applications
*. Github Page link:https://rodrigueslesterlml.github.io/StackPrograms/
*. Note:
- Pass the name of the program as mentioned in the contents in the link above to view the code
- You can Downlaod the zip file and view the code using your IDE or view it using notepad
Contents:
-
Stack_LL.C ---> Implementation of Stack As LL
-
StackADT.C ---> Implementation of Stack As ADT
-
CharStackADT.C---> Implementation Of Character Stack ADT
-
Brackets.C---> checking if a expression is well formed
-
stackrev.C---> reversing a list of numebrs using stack
-
IntoPos.C---> converting infix to postfix exp method 1
-
EVALPOST.C---> Evaluating a postfix expression using stack