https://github.com/ewliang/sparse-poly-calculator-c-
A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.
https://github.com/ewliang/sparse-poly-calculator-c-
c c-plus-plus calculator cpp math polynomial-calculator visual-studio
Last synced: about 1 month ago
JSON representation
A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.
- Host: GitHub
- URL: https://github.com/ewliang/sparse-poly-calculator-c-
- Owner: ewliang
- Created: 2014-11-22T08:19:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-22T08:22:58.000Z (over 11 years ago)
- Last Synced: 2025-01-02T01:40:45.806Z (over 1 year ago)
- Topics: c, c-plus-plus, calculator, cpp, math, polynomial-calculator, visual-studio
- Language: C++
- Size: 2.68 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Sparse-Poly-Calculator-C-
=========================
A C++ Sparse Poly calculator that can add or multiply polynomials created in the main driver. The program utilizes vectors to store the polynomial term values. It automatically sorts the terms from least to greatest exponent order. I wish I had such a program back in high school to tackle those tedious polynomial problems.