// arraypq.h - derived class of PQ to be implemented by // using an unsorted array // cmc, 11/1/2013 #ifndef ARRAYPQ_H #define ARRAYPQ_H #include "pq.h" class ArrayPQ : public PQ { public: ArrayPQ(); virtual void put(double); virtual double get(); private: double *array; int size; }; #endif