NOTE: These are modifications that have been made. The files
in the posting account should be the latest versions.
(Sept 26) Removed some blanks at end of primary.output
in lines with dashes.
(Sept 23) Added #include <iostream
and std:: in front of ostream in PlayerList.h.
(Sept 23) Modified BNF for output file (in Project
1 description). Added some "endl"'s and fixed the "Invalid"
section (which had said "Drop").
(Sept 19) Modified contains() method to
in PlayerList to locate a Name rather than
a string.
(Sept 18) [3:00 PM] Added a contains() method
to PlayerList. Returns true, if the key appears in
the list. Returns false, if not. (Can use locate to
implement).
(Sept 17) [3:15 PM] Corrected definition of
operator> in Name.h.
(Sept 16) [3:45 PM] Added const version of
getData() to IntNode.h.
(Sept 14) [9:30 PM] Changed getRanking()
to getRankingList() (it's a more accurate name).
(Sept 14) [9:25 PM] Added IntIterator.h
and ConstIntIterator.h to RankingList.h. You
may feel free to add additional missing .h files anywhere.
(Sept 10) [10:25 PM] Added getSchool method to
RankingList. Modified return value to reference in
the operator= in same file. Changed constructor
name to RankingList instead of Ranking.
(Sept 10) [10:25 AM] Changed data to
dataIn in constructor of IntNode.h.
(Sept 10) [12:45 AM] Added std:: in
front of ostream in print method
of RankingList.h.
(Sept 9) [7:20 PM] Added getData() to IntNode.h.
(Sept 8) [10:00 PM] IntNode constructor parameter
corrected from const IntNode &data to const Int &data.
(Sept 8) [4:00 PM] Corrections to default parameter
in Int.h really made this time!
(Sept 8) [4:00 PM] Background reading on C++-style
strings, now in project description (see section labelled
Background Reading).
(Sept 8) [1:10 PM] Many corrections (thanks to Elena for
pointing them out). Nearly all files had operator= returning a
pointer, rather than reference. Also, some of the types of the
parameters were incorrect. I would suggest getting the new .h files
and using them.
(Sept 8) Added type "int" to parameter list in constructor
for "Int.h".
(Sept 7) Removed "Node.h" from #include (since this
file does not exists).
(Sept 7) Changed "locate" parameters. prev
has been removed, since a doubly linked list doesn't require a
prev pointer, just a curr pointer
is needed. You get to decide whether to do a predecessor or successor
locate (either one will do).