Linked List
Makefile - Makefile for compiling and running the code.
list.cpp - C++ source code implementing a linked list.
list.h - C++ header file implementing a linked list.
testlist.cpp - C++ source code for testing the linked list.
testlist.exe - Executable (Linux) generated from Makefile.
Quick Sort
Makefile - Makefile for compiling and running the code.
quicksort.cpp - C++ source code implementing quick sort.
quicksort.exe - Executable (Linux) generated from Makefile.
How to use this code
Type "make" to compile the list and quicksort source code.
This will generate the "testlist.exe" and "quicksort.exe" executables.
Use "make runlist" to run the "testlist.exe" program.
Use "make runsort" to run the "quicksort.exe" program.