Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/awais-124/stack-expression-converter

Expressions Converter. Third semester project using data structures concept.
https://github.com/awais-124/stack-expression-converter

cpp data-structures expression-converter-application programming stack

Last synced: about 1 month ago
JSON representation

Expressions Converter. Third semester project using data structures concept.

Awesome Lists containing this project

README

        

# A C++ Project using Data Structures.
### Expression Converter
> It was developed as Semester project for the course Data Structures and Algorithms.


> ### Features
This code includes converting expressions from one form to another:
1. Postfix to Prefix
2. Prefix to Postfix
3. Postfix to Infix
4. Prefix to Infix
5. Infix to Prefix
6. Infix to Postfix

> #### **Stack Data structure** is used to perform all these conversions. One of the common applications of Stack Data Structure.