【文件属性】:
文件名称:队列类模板
文件大小:2KB
文件格式:H
更新时间:2015-12-11 16:29:02
队列类模板 C++
template
class Queue
{
public:
Queue(void);
void QInsert(const T &item;); //新元素入队
T QDelete(void); //元素出队
void ClearQueue(void); //清空队列
T QFront(void)const; //访问队首元素
int QLength(void)const;
int QEmpty(void)const;
int QFull(void)const;
private:
int front, rear, count; //队头指针、队尾指针、元素个数
T qlist[MaxQSize]; //队列元素数组
};