#ifndef PRIORITY_QUEUE1_H
#define PRIORITY_QUEUE1_H

class priority_queue1 {
public:
	priority_queue1(int = 1);
	void initialize(int);
	int top();
	void push(int);
	void pop();
	bool isEmpty();
private:
	int prevTop;
	int i;
};

#endif