会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
UEW
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
2019年3月27日
链式链表
摘要: #include using namespace std; typedef int ElemType; struct Node { ElemType date; Node *next; }; struct LinkQueue { Node *front ,*rear; void Init(); void Clear(); bool Empty()...
阅读全文
posted @ 2019-03-27 21:00 UEW
阅读(164)
评论(0)
推荐(0)
编辑
循环队列
摘要: #include using namespace std; const int MaxQsize=100; typedef int ElemType; struct SqQueue { ElemType *base; int front; int rear; void Init(); void clear(); bool Empty();...
阅读全文
posted @ 2019-03-27 20:15 UEW
阅读(148)
评论(0)
推荐(0)
编辑
公告