tsuPod v2 ... (linked lists)


CS 2308

Completed Program Due: Friday 4/24/15 10:00pm

100 points



Yet again we will be implementing the tsuPod, but this time it will look much different...

For this program we will be implementing the storage portion of the tsuPod (pronounced "su Pod" - the much smaller version of the iPod) using a linked list. We will be storing the following information:

You will create your own header and cpp files for the TsuPod and Song classes.

You will create your own driver program. Note: This one should work with your code, but yours will test more things (e.g. sorting).


The following code should work as a makefile. (click this link to download)

final: TsuPod_Driver.o TsuPod.o Song.o
        g++ -o test  TsuPod_Driver.o TsuPod.o Song.o
driver: TsuPod_Driver.cpp TsuPod.h Song.h
        g++ -c TsuPod_Driver.cpp
tsuPod: TsuPod.cpp TsuPod.h Song.h
        g++ -c TsuPod.cpp song: Song.cpp Song.h
        g++ -c Song.cpp


All the other rules regarding  function return values from the previous TsuPod program still apply.



Things you should do:


NOTES

Upload:  the source file(s) (compressed with zip or tar and zip or gzip if multiple source files) only, on TRACS.

Be sure to follow the style standards for the course. 


Updated 4/15/15