## Unit 8 Directory
##
## This file list the contents of the directory and gives instructions
## for compiling the example programs

countwrd.cpp: searching in a linked list
	g++ countwrd.cpp ../util/getinput.cpp -o countwrd

cstring.{cpp,hpp}: library code for representing strings using a
linked list

list.hpp: library code for a generic, doubly linked list

polynom.cpp: a linked list implementation of polynomials
	g++ polynom.cpp ../util/getinput.cpp -o polynom

qlink.hpp: library code for a generic linked-list-based queue

queue.hpp: library code for a generic array-based queue

testlist.cpp: testing program for the code in list.hpp
	g++ testlist.cpp ../util/getinput.cpp -o testlist

testque.cpp: a test program for the code in queue.hpp
	g++ testque.cpp ../util/getinput.cpp -o testque

testquel.cpp: a test program for the code in qlink.hpp
	g++ testquel.cpp ../util/getinput.cpp -o testquel

teststk.cpp: a test program for the code in stack.hpp
	g++ teststk.cpp ~/util/getinput.cpp -o teststk

teststr.cpp: a test program for the cstring class
	g++ teststr.cpp cstring.cpp -o teststr

200.lst, 714.article: input files for use with countwrd.cpp

10.wrd: frequency file for use with countwrd.cpp



