https://github.com/panks/BigInteger
An Implementation of BigInteger library in C++
https://github.com/panks/BigInteger
Last synced: 6 months ago
JSON representation
An Implementation of BigInteger library in C++
- Host: GitHub
- URL: https://github.com/panks/BigInteger
- Owner: panks
- Created: 2012-07-26T15:51:09.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T19:10:14.000Z (almost 3 years ago)
- Last Synced: 2024-11-14T20:38:41.890Z (12 months ago)
- Language: C++
- Size: 109 KB
- Stars: 96
- Watchers: 9
- Forks: 60
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeCppGameDev - BigInteger
README
BigInteger
==========
An Implementation of BigInteger library in C++
This Project contains two versions of the library:
1. Library split into .h and .cpp file.
Detailed Description of library functions present in .h file.
For use in projects when no boundation on number of file or size.
Files: BigInteger.h, BigInteger.cpp
2. Entire Library in single file.
I removed the comments and put the code in Java indentation style
to decrease size and space.
For use in Programming Contests or places when one single file code
is required.
File: BigIntegerSingleFile.cpp