The first part of the code is List.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 //********************************************** // List.h //********************************************** #ifndef LIST_H #define LIST_H #include #include using namespace std; class List{ public : List();//Constructor ~List();//Destructor void addItem(int item);//add integer item void deleteItem(int loc);//delete item private: [...]
daha fazlası →