资源简介
JAVA核心技术卷2全部源代码
官方
代码片段和文件信息
import java.awt.*;
import java.awt.geom.*;
import java.awt.event.*;
import java.util.*;
import java.util.concurrent.*;
import javax.swing.*;
/**
This program animates a sort algorithm.
*/
public class AlgorithmAnimation
{
public static void main(String[] args)
{
Jframe frame = new Animationframe();
frame.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
/**
This frame shows the array as it is sorted together with buttons to single-step the animation
or to run it without interruption.
*/
class Animationframe extends Jframe
{
public Animationframe()
{
ArrayPanel panel = new ArrayPanel();
add(panel BorderLayout.CENTER);
Double[] values = new Double[VALUES_LENGTH];
final Sorter sorter = new Sorter(values panel);
JButton runButton = new JButton(“Run“);
runButton.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
sorter.setRun();
}
});
JButton stepButton = new JButton(“Step“);
stepButton.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
sorter.setStep();
}
});
JPanel buttons = new JPanel();
buttons.add(runButton);
buttons.add(stepButton);
add(buttons BorderLayout.NORTH);
setSize(DEFAULT_WIDTH DEFAULT_HEIGHT);
for (int i = 0; i < values.length; i++)
values[i] = new Double(Math.random());
Thread t = new Thread(sorter);
t.start();
}
private static final int DEFAULT_WIDTH = 300;
private static final int DEFAULT_HEIGHT = 300;
private static final int VALUES_LENGTH = 30;
}
/**
This runnable executes a sort algorithm.
When two elements are compared the algorithm
pauses and updates a panel.
*/
class Sorter implements Runnable
{
/**
Constructs a Sorter.
@param values the array to be sorted
@param panel the panel on which to display the sorting progress
*/
public Sorter(Double[] values ArrayPanel panel)
{
this.values = values;
this.panel = panel;
this.gate = new Semaphore(1);
this.run = false;
}
/**
Sets the sorter to “run“ mode.
*/
public void setRun()
{
run = true;
gate.release();
}
/**
Sets the sorter to “step“ mode.
*/
public void setStep()
{
run = false;
gate.release();
}
public void run()
{
Comparator comp = new
Comparator()
{
public int compare(Double i1 Double i2)
{
panel.setValues(values i1 i2);
try
{
if (run)
Thread.sleep(DELAY);
else
gate.acquire();
}
c
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-09-21 11:55 Source Code\
文件 79 2008-09-10 13:53 Source Code\CodeFans.net.url
目录 0 2013-08-02 11:35 __MACOSX\
目录 0 2013-08-02 11:35 __MACOSX\Source Code\
文件 241 2008-09-10 13:53 __MACOSX\Source Code\._CodeFans.net.url
目录 0 2008-09-21 11:54 Source Code\gutenberg\
文件 163184 2001-10-27 13:59 Source Code\gutenberg\alice30.txt
目录 0 2013-08-02 11:35 __MACOSX\Source Code\gutenberg\
文件 241 2001-10-27 13:59 __MACOSX\Source Code\gutenberg\._alice30.txt
文件 2689721 2001-10-27 13:59 Source Code\gutenberg\crsto10.txt
文件 241 2001-10-27 13:59 __MACOSX\Source Code\gutenberg\._crsto10.txt
文件 241 2008-09-21 11:54 __MACOSX\Source Code\._gutenberg
目录 0 2008-09-21 11:54 Source Code\v2ch1\
目录 0 2008-09-21 11:54 Source Code\v2ch1\AlgorithmAnimation\
文件 4526 2004-09-07 07:07 Source Code\v2ch1\AlgorithmAnimation\AlgorithmAnimation.java
目录 0 2013-08-02 11:35 __MACOSX\Source Code\v2ch1\
目录 0 2013-08-02 11:35 __MACOSX\Source Code\v2ch1\AlgorithmAnimation\
文件 241 2004-09-07 07:07 __MACOSX\Source Code\v2ch1\AlgorithmAnimation\._AlgorithmAnimation.java
文件 241 2008-09-21 11:54 __MACOSX\Source Code\v2ch1\._AlgorithmAnimation
目录 0 2008-09-21 11:54 Source Code\v2ch1\BlockingQueueTest\
文件 3376 2004-09-29 19:45 Source Code\v2ch1\BlockingQueueTest\BlockingQueueTest.java
目录 0 2013-08-02 11:35 __MACOSX\Source Code\v2ch1\BlockingQueueTest\
文件 241 2004-09-29 19:45 __MACOSX\Source Code\v2ch1\BlockingQueueTest\._BlockingQueueTest.java
文件 241 2008-09-21 11:54 __MACOSX\Source Code\v2ch1\._BlockingQueueTest
目录 0 2008-09-21 11:54 Source Code\v2ch1\Bounce\
文件 4096 2004-09-07 07:07 Source Code\v2ch1\Bounce\Bounce.java
目录 0 2013-08-02 11:35 __MACOSX\Source Code\v2ch1\Bounce\
文件 241 2004-09-07 07:07 __MACOSX\Source Code\v2ch1\Bounce\._Bounce.java
文件 241 2008-09-21 11:54 __MACOSX\Source Code\v2ch1\._Bounce
目录 0 2008-09-21 11:54 Source Code\v2ch1\BounceThread\
文件 4727 2004-09-07 07:07 Source Code\v2ch1\BounceThread\BounceThread.java
............此处省略1089个文件信息
相关资源
- ssm开发java web版本的妖气山视频网站系
- JSP汽车租赁系统java
- java web 购物网站前后端实现+毕业设计
- Java超级玛丽39583
- 阿里巴巴java开发手册-2020最新嵩山版
- 基于javase汽车销售管理系统含数据库
- JavaEE(J2EE)课程设计,MyEclipse工程,
- JSP+Servlet+Javabean+Mysql 网上书店管理系
- java马里奥毕业设计
- mysql8.0jdbc驱动.zip
- JAVA支付宝支付接口.rar
-
java Swing 读取xm
l并导出Excel密码:qi - org.apache.commons.codec包
- java实现客户端上传图片到ftp服务器,
- 仿闲鱼 jsp+servlet
- Java经典入门教程pdf完整版31282
- java员工表增删该查完整代码+orcle数据
- Java编程思想第4版,文字版,非扫描版
- TFIDF算法java实现
- Java+MySQL火车站售票系统
- JavaWeb 入门级项目实战 -- 文章发布系
- web/java/jsp实现发送手机短信验证码和
- 简单仓库管理系统 基于java+SQLserver2
- 图书管理系统毕业设计+源码-java
- 基于Java的高校绩效工资管理系统的设
- 简单java程序的小练习
- 找不到org.reactivestreams.Publisher的类文件
- java_资源管理系统.rar
- javaEE-servlet留言板项目demo,简单易懂
- 车辆违章管理系统(Java+JSP)
评论
共有 条评论