Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/macktb/smart-calculator
Smart Calculator using generic programming in Java with conversion of numbers from infix notation to postfix notation.
https://github.com/macktb/smart-calculator
Last synced: 5 days ago
JSON representation
Smart Calculator using generic programming in Java with conversion of numbers from infix notation to postfix notation.
- Host: GitHub
- URL: https://github.com/macktb/smart-calculator
- Owner: macktb
- Created: 2020-11-30T21:56:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-30T22:21:20.000Z (about 4 years ago)
- Last Synced: 2025-01-10T16:54:16.446Z (6 days ago)
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Calculator
We realise that project using _**generic programming**_ in Java.
In order to compute, we convert the numbers from infix notation to postfix notation.The reason to convert infix to postfix expression is that we can compute
the answer of postfix expression easier by using a stack since we can have
an expresion like this :
- 3 + 8 * ((4 + 3) * 2 + 1) - 6 / (2 + 1)
- a\*2+b\*3+c*(2+3).