Update src/sorting/README for main.h -> sort.h rename.
authorW. Trevor King <wking@drexel.edu>
Tue, 26 Oct 2010 14:14:53 +0000 (10:14 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 26 Oct 2010 14:14:53 +0000 (10:14 -0400)
src/sorting/README

index d69b5d5bdf95e3829056e0dc234e8e4a4a7b785a..f770fc4881f717dd7b967de724159060be8edc80 100644 (file)
@@ -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