yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ ll total 4 -rw-r--r-- 1 yoshi yoshi 1241 Apr 23 12:19 Array.c lrwxrwxrwx 1 yoshi yoshi 15 Apr 23 12:16 Array.h -> ../Heap/Array.h lrwxrwxrwx 1 yoshi yoshi 14 Apr 23 12:16 Item.c -> ../Heap/Item.c lrwxrwxrwx 1 yoshi yoshi 14 Apr 23 12:16 Item.h -> ../Heap/Item.h lrwxrwxrwx 1 yoshi yoshi 16 Apr 23 12:16 Makefile -> ../Heap/Makefile lrwxrwxrwx 1 yoshi yoshi 19 Apr 23 12:16 bible11.txt -> ../Heap/bible11.txt lrwxrwxrwx 1 yoshi yoshi 16 Apr 23 12:16 driver.c -> ../Heap/driver.c lrwxrwxrwx 1 yoshi yoshi 17 Apr 23 12:16 texto.txt -> ../Heap/texto.txt yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ make Array.o Item.o driver.o gcc -g -I. -Wall -pedantic -c Array.c gcc -g -I. -Wall -pedantic -c Item.c gcc -g -I. -Wall -pedantic -c driver.c yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ gcc Array.o Item.o driver.o yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ a.out 20 0 < bible11.txt And Genesis God In and and and beginning created earth earth. form, heaven the the the the void; was without yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ time a.out 1000 0 < bible11.txt > /dev/null real 0m0.004s user 0m0.010s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ time a.out 10000 0 < bible11.txt > /dev/null real 0m0.029s user 0m0.020s sys 0m0.010s yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ time a.out 20000 0 < bible11.txt > /dev/null real 0m0.055s user 0m0.050s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ time a.out 100000 0 < bible11.txt > /dev/null real 0m0.446s user 0m0.420s sys 0m0.010s yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ time a.out 100000 0 < bible11.txt > /dev/null real 0m0.422s user 0m0.400s sys 0m0.020s yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$ make clean /bin/rm -f *~ \#~ .\#* *.o core a.out yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heapsort$