From: W. Trevor King Date: Tue, 26 Oct 2010 14:14:53 +0000 (-0400) Subject: Update src/sorting/README for main.h -> sort.h rename. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aad743ddc1e9a9be897400a448aa4869e5c1b7eb;p=parallel_computing.git Update src/sorting/README for main.h -> sort.h rename. --- diff --git a/src/sorting/README b/src/sorting/README index d69b5d5..f770fc4 100644 --- a/src/sorting/README +++ b/src/sorting/README @@ -10,9 +10,11 @@ Manifest README This file. Makefile Automate building and cleanup. data.py Generate random data for the 'data' file. -main.c/.h Command line framework for a sorting algorithm. -bubble.c Bubble sort algorithm for main.c/.h. -quicksort.c Quicksort algorithm for main.c/.h. +scaling.py Script to generate time-scaling data. +main.c Command line framework for a sorting algorithm. +sort.h Header declaring sort function syntax. +bubble.c Bubble sort implementation of sort.h. +quicksort.c Quicksort implementation of sort.h. =========== =============================================== Build @@ -34,7 +36,7 @@ Remove auto-generated files with Usage ----- - $ ./qicksort data + $ ./quicksort data $ ./bubble data Timing