https://github.com/stackofsugar/cppbiginteger
https://github.com/stackofsugar/cppbiginteger
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stackofsugar/cppbiginteger
- Owner: stackofsugar
- License: gpl-3.0
- Created: 2021-03-17T18:16:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-18T05:19:31.000Z (over 5 years ago)
- Last Synced: 2025-07-30T13:07:49.776Z (11 months ago)
- Language: CMake
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: COPYING
Awesome Lists containing this project
README
# C++ Big Integer
### My C++'s implementation of one of Java's most renowned data structure, BigInteger.
> Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in two's-complement notation (like Java's primitive integer types). BigInteger provides analogues to all of Java's primitive integer operators, and all relevant methods from java.lang.Math. Additionally, BigInteger provides operations for modular arithmetic, GCD calculation, primality testing, prime generation, bit manipulation, and a few other miscellaneous operations.
> Java's BigInteger definition, retrieved from docs.oracle.com.
### 0. Milestones
- [ ] Decide the numbering system that will be used. Is it going to be 8-bit char? what are the complications?
- [ ] Ponder around the complication of base-N multiplications and divisions
### 1. Base-N Number System
### 2. Base-N non base-10 Multiplication Systems and Its Cases