哇哦~这就是我
This is my way ~
C++博客
首页
新随笔
联系
聚合
管理
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
统计
随笔 - 10
文章 - 0
评论 - 2
引用 - 0
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔档案
2008年5月 (2)
2008年4月 (3)
2008年3月 (5)
搜索
最新评论
1. re: C++第五次上机作业
你似乎还是不会使用批处理文件和命令行参数哟~~
--一个你的同学
2. re: 我可怜的第三次C++作业啊~~~只有70分~~~
可能是写的过程中有错,所以你要flash一下io或重设io的状态!
--梦在天涯
阅读排行榜
1. C++第四次上机作业(异或加密)(1378)
2. C++第五次上机作业(312)
3. 我恨死这道题了。。。。。。(292)
4. 详细解说 STL 排序(Sort) (288)
5. 我可怜的第三次C++作业啊~~~只有70分~~~(284)
评论排行榜
1. 我可怜的第三次C++作业啊~~~只有70分~~~(1)
2. C++第五次上机作业(1)
3. 第七次(0)
4. 11(0)
5. push!(0)
第七次
#include
"
cqueue.h
"
#include
<
iostream
>
void char_queue::enqueue(char d)
{
if
( tail
>=
max )
throw ( bad_op( ) );
else
c[tail
++
]
=
d;
}
char char_queue::dequeue()
{
return c[head
++
];
}
int
char_queue::
isEmpty
()
{
return head
==
tail?
1
:
0
;
}
#include
<
cstdio
>
class char_queue
{
int
head,tail,max;
char c[
10000
];
public
:
char_queue() {head
=
0
; tail
=
0
; max
=
10000
; }
void enqueue( char );
char dequeue( );
int
isEmpty
();
class bad_op
{
public
:
int
type ;
bad_op( ) { type
=
1
; }
};
};
posted on 2008-04-16 23:27
chinaeli
阅读(176)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理