BigNumber library

Implementation of numbers in C++ using linked lists. The size of the number depends on the architecture on which the code is run. Of course, the number of bits is greater than 64 and allows you to add, subtract, multiply and divide numbers. Perhaps the possibility of exponentiation, priming and checking if a given number is prime will be designed. Binary, hexadecimal and decimal number display available. Project in progress. Currently working on tests and improving the library. To compile tests, you need to have the GoogleTest framework and CMake installed on your system.

Check out the project on GitHub: BigNumber Library on GitHub

Back to Portfolio