Example Individual Summary for CS367-3 Final Project ---------------------------------------------------- For my CS367-3 Final Project, our group implemented several varieties of sets and compared their performance on a variety of data. For my part, I implemented a list class template and a set class template that has as its primary member a list object. These implementation as well as documentation for these implementations can be found in the files list.h, list.C, set.h, and set.C which will be turned in at demonstration time. The list class template that I implemented relies on linked-lists. I have also have supplied external iterators in list-iter.h and list-iter.C. I have also implemented a test program, called set-tester.C, that generates random data (in function randomData) and uses the timing operation (supplied by function timer()) to measure how long various set classes take to insert, search for, and remove the random data.