Study Guide > List.h Michigan State University EECS 280


Michigan State University EECS 280 #ifndef LIST_H #define LIST_H /* List.h * * doubly-linked, double-ended list with Iterator interface * Project UID c1f28c309e55405daf00c565d57ff9ad * EECS 280 Project 4 */ #include #include //assert #include //NULL template class List { //OVERVIEW: a doubly-linked, double-ended list with Iterator interface public: List() : first(nullptr), last(nu ...[Show More]

Preview 1 out of 5 pages
Purchase this document to unlock the blurred part and the rest of the document

Unlock Now

Reviews( 0 )