The file List.cpp has implementation of the List Data Structure.
- List.cpp
- List.h
- ListTest.cpp
- Shuffle.cpp
- README.md
- Makefile
$ make clean
This command will make the repository clean by deleting the object file and executable file of ListTest.cpp, Shuffle.cpp, and List.cpp.
$ make
This command will just compile other C files and make the executable and object file for ListTest.cpp and Shuffle.cpp.
$ make
- This command will just compile and make the executable and object file for ListTest.cpp and Shuffle.cpp.
$ ./ListTest
- This command will run the ListTest file and show the output of List ADT functions.
$ ./Shuffle <deck size>
- This command will run Shuffle.cpp and it takes 1 argument i.e. positive integer number.
- Run the make command
$ make
- Run the following command to check the memory leaks in ListTest file.
$ make checkTest
- Run the following command to check the memory leaks in Shuffle File.
$ make checkShuffle
- To clean the .txt files.
$ make cleanText
- To clean the backup directory.
$ make cleandir