8 #ifndef AULA1_DATASTRUCTURE_HPP 9 #define AULA1_DATASTRUCTURE_HPP 23 virtual std::string
getName()=0;
Base class for all data structures.
virtual bool isFull()=0
Check whether the structure is full.
virtual std::string getName()=0
Provides the name of the data structure as a string representation.
virtual bool isEmpty()=0
Check whether the structure is empty.
virtual int getSize()=0
Outputs the number of elements stored in the structure.