yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Basico$ cd ../Heap/
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ make Array.o Item.o PQ.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 PQ.c
gcc -g -I. -Wall -pedantic -c PQ.c
gcc -g -I. -Wall -pedantic -c driver.c
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ gcc Array.o Item.o PQ.o driver.o
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ 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/Heap$ time a.out 1000 0 < bible11.txt > /dev/null

real	0m0.005s
user	0m0.000s
sys	0m0.000s
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ time a.out 10000 0 < bible11.txt > /dev/null

real	0m0.028s
user	0m0.030s
sys	0m0.000s
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ time a.out 20000 0 < bible11.txt > /dev/null

real	0m0.052s
user	0m0.050s
sys	0m0.000s
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ time a.out 100000 0 < bible11.txt > /dev/null

real	0m0.437s
user	0m0.410s
sys	0m0.010s
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ wc -w bible11.txt 
 789712 bible11.txt
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ time a.out 1000000 0 < bible11.txt > /dev/null

real	0m5.490s
user	0m5.450s
sys	0m0.020s
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$ make clean
/bin/rm -f *~ \#~ .\#* *.o core a.out
yoshi@erdos:~/Main/www/2002i/CompII/exx/PQs/Heap$