Project 1a: SortingYou will write a simple sorting program. This program should be invoked as follows: shell% ./fastsort -i inputfile -o outputfile The above line means the users typed in the name of the sorting program
Input files are generated by a program we give you called generate.c (good name, huh?). After running
kkRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR Your goal: to build a sorting program called Some DetailsUsing shell% gcc -o generate generate.c -Wall -Werror Note: you will also need the header file sort.h to compile this program. Then you run it: shell% ./generate -s 0 -n 100 -o /tmp/outfile There are three flags to The format of the file generated by the Another useful tool is dump.c . This program can be used to
dump the contents of a file generated by HintsIn your sorting program, you should just use If you want to figure out how big in the input file is before reading it
in, use the To sort the data, use any old sort that you'd like to use. An easy way to
go is to use the library routine To exit, call The routine If you don't know how to use these functions, use the man pages. For
example, typing Assumptions and Errors
32-bit integer range. You may assume that the keys are unsigned 32-bit integers. File length: May be pretty long! However, there is no need to implement a fancy two-pass sort or anything like that; the data set will fit into memory. Invalid files: If the user specifies an input or output file that you cannot open (for whatever reason), the sort should EXACTLY print: Too few or many arguments passed to program: If the user runs fastsort
without any arguments, or in some other way passes incorrect flags and such to
fastsort, print
Important: On any error code, you should print the error to the screen
using
History and a ContestThis sorting assignment derives from a yearly competition to make the fastest disk-to-disk sort in the world. See the sort home page for details. If you look closely, you will see that your professor was once -- yes, wait for it -- the fastest sorter in the world. To continue in this tradition, we will also be holding a sorting competition. Whoever turns in the fastest sorting program on the 1,000,000 record test will win a fancy 537 T-shirt, awarded at the end of the semester. Read more about sorting, including perhaps the NOW-Sort paper , for some hints on how to make a sort run really fast. Or just use your common sense! Hint: you'll have to think a bit about hardware caches. General AdviceStart small, and get things working incrementally. For example, first get a program that simply reads in the input file, one line at a time, and prints out what it reads in. Then, slowly add features and test them as you go. Testing is critical. One great programmer I once knew said you have to write 5-10 lines of test code for every line of code you produce; testing your code to make sure it works is crucial. Write tests to see if your code handles all the cases you think it should. Be as comprehensive as you can be. Of course, when grading your projects, we will be. Thus, it is better if you find your bugs first, before we do. Keep old versions around. Keep copies of older versions of your program
around, as you may introduce bugs and not be able to easily undo them. A
simple way to do this is to keep copies around, by explicitly making copies of
the file at various points during development. For example, let's say you get
a simple version of Keep your source code in a private directory. An easy way to do this is
to log into your account and first change directories into |