会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
这个签名很没水平
博客园
首页
博问
闪存
新随笔
订阅
管理
2016年5月11日
C++队列中应该注意的一些问题
摘要: 第一次在C++中写类,新手,见笑 #include<iostream.h>#include<iostream>template<typename T> class Queue{private: int maxsize,front,rear; T *q;public: Queue() { q=new
阅读全文
posted @ 2016-05-11 17:29 薄樱
阅读(789)
评论(0)
推荐(0)
编辑