The file BigInteger.cpp has implementation of the BigInteger Data Structure with help of List ADT.
- List.cpp
- List.h
- ListTest.cpp
- BigInteger.cpp
- BigInteger.h
- BigIntegerTest.cpp
- Arithmetic.cpp
- README.md
- Makefile
$ make clean
This command will make the repository clean by deleting the object file and executable file of ListTest.cpp, Arthimetic.cpp,BigInteger.cpp, BigIntegerTest.cpp and List.cpp.
$ make
This command will just compile other C files and make the executable and object file for ListTest.cpp, BitIntegerTest.cpp and Arithmetic.cpp.
$ make
- This command will just compile other C files and make the executable and object file for ListTest.cpp, BitIntegerTest.cpp and Arithmetic.cpp.
$ ./ListTest
- This command will run the ListTest file and show the output of List ADT functions.
$ ./BigIntegerTest
- This command will run the BigIntegerTest file and show the output of BigInteger ADT functions.
$ ./Arithmetic in out
- This command will run Arithmetic.cpp and it takes 2 arguments i.e. input file (default:in) and output file (out).
- Run the make command
$ make
- Run the following command to check the memory leaks in ListTest file.
$ make checkList
- Run the following command to check the memory leaks in BigIntegerTest File.
$ make checkInteger
- Run the following command to check memory leaks in Arithmetic File.
$ make checkMath
- To clean the .txt files.
$ make cleanText
- To clean the backup directory.
$ make cleandir