Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/awais-124/stack-expression-converter
- Owner: awais-124
- Created: 2024-03-10T10:47:26.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T17:17:27.000Z (5 months ago)
- Last Synced: 2024-11-02T13:42:18.303Z (3 months ago)
- Topics: cpp, data-structures, expression-converter-application, programming, stack
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.