Murdoch University ICT 283 #ifndef Vector_H #define Vector_H #include #include using namespace std; template class Vector{ public: //default constructor Vector(); //insertion and print void push_back(const elemType& i); void print() const; //for dealing with arrays bool isEmpty() const; bool isFull() const; int getSize() const; elemType& at(int i); private: elemType list[100] ...[Show More]
Category: | |
Number of pages: | 2 |
Language: | English |
Last updated: | 10 months ago |
Downloads: | 1 |
Views: | 2 |