1. 首页
  2. 移动开发
  3. Symbian
  4. 队列类模板

队列类模板

上传者: 2020-12-02 21:57:43上传 H文件 1.71KB 热度 10次
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: in
下载地址
用户评论