it's 6 not 7

This commit is contained in:
Jidong Xiao
2024-02-24 20:16:59 -05:00
parent c7ad09104f
commit 19a47c61e0

View File

@@ -300,9 +300,9 @@ You must do this assignment on your own, as described in the [Collaboration Poli
- Overly cramped. (-1)
- Poor file organization: Puts more than one class in a file (okay for very small helper classes) (-1)
- Poor choice of variable names: non-descriptive names (e.g. 'vec', 'str', 'var'), single-letter variable names (except single loop counter), etc. (-2)
- DATA REPRESENTATION (Must create and use homemade linked lists for the implementation.) (7 pts)
- No credit (significantly incomplete implementation). (-7)
- Uses std::list, or data structures which have not been covered in this class. (-7)
- DATA REPRESENTATION (Must create and use homemade linked lists for the implementation.) (6 pts)
- No credit (significantly incomplete implementation). (-6)
- Uses std::list, or data structures which have not been covered in this class. (-6)
- Defines/Uses a list class. (-5)
- Defines/Uses an iterator class (okay to use iterators to iterate through other containers such as vectors). (-5)
- Does not use homemade linked lists (which consist of a chain of nodes) to store all the users. (-5)