随笔:20 文章:1 评论:8 引用:0
╰⊙д⊙╯。oо○
面朝大海·春暖花开
BlogJava
首页
发新随笔
发新文章
联系
聚合
管理
『第四章』队列的基本使用
//
Queue.java
//
demonstrates queue
//
to run this program: C>java QueueApp
////////////////////////////////////////////////////////////////
class
Queue
{
private
int
maxSize;
private
long
[] queArray;
private
int
front;
private
int
rear;
private
int
nItems;
//
--------------------------------------------------------------
public
Queue(
int
s)
//
constructor
{
maxSize
=
s;
queArray
=
new
long
[maxSize];
front
=
0
;
rear
=
-
1
;
nItems
=
0
;
}
//
--------------------------------------------------------------
public
void
insert(
long
j)
//
put item at rear of queue
{
if
(rear
==
maxSize
-
1
)
//
deal with wraparound
rear
=
-
1
;
queArray[
++
rear]
=
j;
//
increment rear and insert
nItems
++
;
//
one more item
}
//
--------------------------------------------------------------
public
long
remove()
//
take item from front of queue
{
long
temp
=
queArray[front
++
];
//
get value and incr front
if
(front
==
maxSize)
//
deal with wraparound
front
=
0
;
nItems
--
;
//
one less item
return
temp;
}
//
--------------------------------------------------------------
public
long
peekFront()
//
peek at front of queue
{
return
queArray[front];
}
//
--------------------------------------------------------------
public
boolean
isEmpty()
//
true if queue is empty
{
return
(nItems
==
0
);
}
//
--------------------------------------------------------------
public
boolean
isFull()
//
true if queue is full
{
return
(nItems
==
maxSize);
}
//
--------------------------------------------------------------
public
int
size()
//
number of items in queue
{
return
nItems;
}
//
--------------------------------------------------------------
}
//
end class Queue
////////////////////////////////////////////////////////////////
class
QueueApp
{
public
static
void
main(String[] args)
{
Queue theQueue
=
new
Queue(
5
);
//
queue holds 5 items
theQueue.insert(
10
);
//
insert 4 items
theQueue.insert(
20
);
theQueue.insert(
30
);
theQueue.insert(
40
);
theQueue.remove();
//
remove 3 items
theQueue.remove();
//
(10, 20, 30)
theQueue.remove();
theQueue.insert(
50
);
//
insert 4 more items
theQueue.insert(
60
);
//
(wraps around)
theQueue.insert(
70
);
theQueue.insert(
80
);
while
(
!
theQueue.isEmpty() )
//
remove and display
{
//
all items
long
n
=
theQueue.remove();
//
(40, 50, 60, 70, 80)
System.out.print(n);
System.out.print(
"
"
);
}
System.out.println(
""
);
}
//
end main()
}
//
end class QueueApp
////////////////////////////////////////////////////////////////
发表于 2008-04-26 11:20
dreamingnest
阅读(188)
评论(0)
编辑
收藏
所属分类:
链表和栈(结)
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
『第四章』后缀表达式求值
『第四章』中缀表达式转换成后缀表达式
『第四章』优先级队列
『第四章』队列的基本使用
『第四章』栈的使用
『第三章』几种排序的关键代码
『第二章』二分查找
CALENDER
<
2008年4月
>
日
一
二
三
四
五
六
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
8
9
10
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
(13)
应用程序(4)
(rss)
数据结构(java)
(rss)
算法程序总结(2)
(rss)
链表和栈(结)(7)
(rss)
随笔档案
(21)
2008年10月 (1)
2008年5月 (7)
2008年4月 (13)
外面的世界
懒散狂徒的专栏(天行健,君子以自强不息 地势坤,君子以厚德载物)
(rss)
这里的朋友
保尔任(思想比知识更重要 成长比成功更重要)
搜索
最新评论
1. re: BFS和DFS两种方法获取指定目录下的所有目录和文件
学习了
--fejay
2. re: 关于蚂蚁问题(Ants)
实际过程可以这么进行抽象模拟:
序列中的元素带有方向,进行负值部分移动到负值区域,正值部分移动到正值区域时就不再发生碰撞,此时绝对值最小的值决定剩余爬行时间
--zdh
3. re: 关于蚂蚁问题(Ants)
这个问题看到实质就很简单,所有的蚂蚁都是相同的蚂蚁,因此可以看成所有的蚂蚁都可以穿过对面爬过来的蚂蚁就ok啦,最长时间就是两端的蚂蚁向另一端爬出去,最短的就是两端的四个蚂蚁向所在端爬出:)
--zdh
4. re: 关于蚂蚁问题(Ants)
评论内容较长,点击标题查看
--blues
5. re: 关于蚂蚁问题(Ants)
评论内容较长,点击标题查看
--dreamingnest
阅读排行榜
1. 关于蚂蚁问题(Ants)(2214)
2. 通过排序总结java泛型数组列表(1643)
3. 堆栈解(非递归)决迷宫问题(1409)
4. ACM中使用JAVA的介绍(1045)
5. ~·扫雷小游戏·~(1024)
评论排行榜
1. 关于蚂蚁问题(Ants)(7)
2. BFS和DFS两种方法获取指定目录下的所有目录和文件(1)
3. 一著名软件公司的java笔试算法题的答案 (0)
4. 堆栈解(非递归)决迷宫问题(0)
5. 堆排序代码(0)
Powered By:
博客园
模板提供
:
沪江博客