可视化排序实践之选择排序

本博文的程序实现对选择排序的可视化。具体的页面布局和之前的文章“可视化排序实践之冒泡排序”一致 (界面很简单就包括两个部分:界面左侧是可视化排序部分,右侧是冒泡排序的代码), 可视化排序实践之冒泡排序的博文请参考http://mouselearnjava.iteye.com/blog/1860956

程序的关键点主要有两点:
1. 如何在页面上表示出排序程序的运行过程。
2. 如何将排序程序的运行过程和可视化排序结合起来,保持状态一致。

我的解决方法如下:
我采用了JList去模拟程序的执行,JList有一个setSelectedIndex的方法,能高亮显示指定的行。通过改变selectedIndex的值,能够达到模拟程序执行的效果。在这个过程中,记录下两个循环的索引状态值,根据这些状态值去调整可视化排序。

具体的程序页面和程序如下:

初始页面:

[img]http://dl.iteye.com/upload/attachment/0084/1279/ad6b3c0f-e4b1-36e8-b089-89290649284f.jpg[/img]

点击“Set”Menu,设定好程序运行的速度并点击“Start”Menu Item开始执行程序。

程序运行的中间过程:

[img]http://dl.iteye.com/upload/attachment/0084/1281/08d06d70-782d-3f95-94ab-8bc3274b5ef0.jpg[/img]

排序完成之后的界面:

[img]http://dl.iteye.com/upload/attachment/0084/1283/04bd177e-ac59-3f7c-9b19-5357d47ea933.jpg[/img]

具体的程序代码如下:
package my.visualization.sort.select;

import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JRadioButtonMenuItem;

/**
*
* @author Eric
* @version 1.0
*
*/
public class SelectSortVisualizationFrame extends JFrame {

private static final long serialVersionUID = -6725108659717827278L;

private Container contentPane;

/**
* 设置三个Menu Item,分别用于开始程序,调整运行的速度以及退出程序
*
*/
private JMenuItem startMI = new JMenuItem("Start");

private JMenu speedMenu = new JMenu("Speed");

private JMenuItem exitMI = new JMenuItem("Exit");

/**
* 设定5个速度级别
*/
private JRadioButtonMenuItem speedMI1 = new JRadioButtonMenuItem("Speed1",
true);

private JRadioButtonMenuItem speedMI2 = new JRadioButtonMenuItem("Speed2",
false);

private JRadioButtonMenuItem speedMI3 = new JRadioButtonMenuItem("Speed3",
false);

private JRadioButtonMenuItem speedMI4 = new JRadioButtonMenuItem("Speed4",
false);

private JRadioButtonMenuItem speedMI5 = new JRadioButtonMenuItem("Speed5",
false);

public int speedFlag = 1;

/**
* 冒泡排序可视化的Panel
*/
private SelectSortPanel panel;

public SelectSortVisualizationFrame(){

setTitle("可视化排序之选择排序");
setSize(700, 400);
setResizable(false);

JMenuBar menuBar = new JMenuBar();
setJMenuBar(menuBar);

JMenu setMenu = new JMenu("Set");

setMenu.setMnemonic('s');

menuBar.add(setMenu);

setMenu.add(startMI);
setMenu.addSeparator();

setMenu.addSeparator();
setMenu.add(speedMenu);
setMenu.addSeparator();
setMenu.add(exitMI);

ButtonGroup group = new ButtonGroup();
group.add(speedMI1);
group.add(speedMI2);
group.add(speedMI3);
group.add(speedMI4);
group.add(speedMI5);

speedMenu.add(speedMI1);
speedMenu.add(speedMI2);
speedMenu.add(speedMI3);
speedMenu.add(speedMI4);
speedMenu.add(speedMI5);

startMI.addActionListener(new StartAction());
speedMI1.addActionListener(new SpeedAction());
speedMI2.addActionListener(new SpeedAction());
speedMI3.addActionListener(new SpeedAction());
speedMI4.addActionListener(new SpeedAction());
speedMI5.addActionListener(new SpeedAction());
exitMI.addActionListener(new ExitAction());

contentPane = getContentPane();

panel = new SelectSortPanel(this);
contentPane.add(panel);
startMI.setEnabled(true);
}

private class StartAction implements ActionListener {
public void actionPerformed(ActionEvent event) {
startMI.setEnabled(false);
panel.timer.start();
}
}

private class ExitAction implements ActionListener {
public void actionPerformed(ActionEvent event) {
System.exit(0);
}
}

private class SpeedAction implements ActionListener {
public void actionPerformed(ActionEvent event) {
Object speed = event.getSource();
if (speed == speedMI1) {
speedFlag = 1;
} else if (speed == speedMI2) {
speedFlag = 2;
} else if (speed == speedMI3) {
speedFlag = 3;
} else if (speed == speedMI4) {
speedFlag = 4;
} else if (speed == speedMI5) {
speedFlag = 5;
}

panel.timer.setDelay(1000 - 200 * (speedFlag - 1));
}
}

}


package my.visualization.sort.select;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;

import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.Timer;

public class SelectSortPanel extends JPanel {

private static final long serialVersionUID = -9149581857139587792L;

private static final String[] code = {
"public void selectSort(int[] data) {", " int temp;",
" int minIndex = 0;",
" for (int i = 0; i < data.length - 1; i++) {",
" minIndex = i;",
" for (int j = i + 1; j < data.length; j++) {",
" if (data[minIndex] > data[j]) {",
" minIndex = j;",
" } ",
" }",
" temp = data[i]; ",
" data[i] = data[minIndex];",
" data[minIndex] = temp;",
" }",
"}"
};

/**
* 初始化10个数据
*/
private List<NumberRectangle> numbers = initialNumberRectangles();

private JList codeList = new JList(code);;

public TimerAction timerAction;

public Timer timer;

public SelectSortVisualizationFrame frame;

public SelectSortPanel(SelectSortVisualizationFrame frame) {

timerAction = new TimerAction();
timer = new Timer(1000, timerAction);

codeList.setSelectedIndex(1);
JScrollPane scrollPane1 = new JScrollPane(codeList);
this.setLayout(new BorderLayout());
this.add(scrollPane1, BorderLayout.EAST);

this.frame = frame;
}

/**
* 判断排序是否已经结束
*/
private boolean completed = false;

public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;

drawNumberRectangles(g2);
}

private void drawNumberRectangles(Graphics2D g2) {
for (NumberRectangle rectangle : numbers) {
rectangle.draw(g2);
}
}

int outerLoop = 0;
int innerLoop = 0;
int selectedIndex = 3;
int minIndex = 0;

private class TimerAction implements ActionListener, Serializable {

private static final long serialVersionUID = -8671813189049345697L;

public void actionPerformed(ActionEvent event) {
if (completed) {
return;
}

switch (selectedIndex) {
case 3:
if (outerLoop < 9) {
codeList.setSelectedIndex(selectedIndex++);
numbers.get(outerLoop).setColor(Color.RED);
innerLoop = outerLoop + 1;
minIndex = outerLoop;
} else {
selectedIndex = 14;
}
break;

case 4:
codeList.setSelectedIndex(selectedIndex++);
break;

case 5:
if (innerLoop < 10) {
codeList.setSelectedIndex(selectedIndex++);
numbers.get(innerLoop).setColor(Color.BLUE);
} else {
selectedIndex = 10;
}
break;

case 6:
numbers.get(innerLoop).setColor(Color.GREEN);
if (numbers.get(minIndex).getValue() > numbers.get(innerLoop)
.getValue()) {
codeList.setSelectedIndex(selectedIndex++);
} else {
codeList.setSelectedIndex(selectedIndex++);
innerLoop++;
selectedIndex = 5;
}
break;

case 7:
minIndex = innerLoop;
innerLoop++;
selectedIndex = 5;
break;

case 10:
codeList.setSelectedIndex(selectedIndex++);
break;
case 11:
codeList.setSelectedIndex(selectedIndex++);
break;
case 12:
numbers.get(innerLoop-1).setColor(Color.GREEN);
codeList.setSelectedIndex(selectedIndex);
int tempValue1 = numbers.get(outerLoop).getValue();
int tempValue2 = numbers.get(minIndex).getValue();
numbers.get(outerLoop).setValue(tempValue2);
numbers.get(minIndex).setValue(tempValue1);
numbers.get(minIndex).setColor(Color.GREEN);
numbers.get(outerLoop).setColor(Color.GREEN);
selectedIndex = 3;
//innerLoop++;
outerLoop++;
break;

case 14:
completed = true;
codeList.setSelectedIndex(selectedIndex);

break;
default:
break;
}

repaint();

}
}

private List<NumberRectangle> initialNumberRectangles() {
List<NumberRectangle> list = new ArrayList<NumberRectangle>();
/**
* 随机产生10个数组
*/
Random random = new Random();
for (int i = 1; i <= 10; i++) {
list.add(new NumberRectangle(i, 1, random.nextInt(15) + 1,
Color.GREEN));
}
return list;
}

}


package my.visualization.sort.select;

import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.geom.Rectangle2D;

public class NumberRectangle {

private int x;

private int y;

private int value;

private Color color;

public NumberRectangle() {
}

public NumberRectangle(int x, int y, int value, Color color) {
this.x = x;
this.y = y;
this.color = color;
this.value = value;

}

public void draw(Graphics2D g2) {
int clientX = 30 + x * 30;
int clientY = 20 + y * 10;
Rectangle2D.Double rect = new Rectangle2D.Double(clientX, clientY, 20,
value * 20);
g2.setPaint(color);
g2.fill(rect);
g2.setPaint(Color.BLACK);
g2.draw(rect);
g2.drawString(String.valueOf(value), clientX, clientY - 10);
}

/**
* @return the color
*/
public Color getColor() {
return color;
}

/**
* @param color
* the color to set
*/
public void setColor(Color color) {
this.color = color;
}

/**
* @return the x
*/
public int getX() {
return x;
}

/**
* @param x
* the x to set
*/
public void setX(int x) {
this.x = x;
}

/**
* @return the y
*/
public int getY() {
return y;
}

/**
* @param y
* the y to set
*/
public void setY(int y) {
this.y = y;
}

/**
* @return the value
*/
public int getValue() {
return value;
}

/**
* @param value
* the value to set
*/
public void setValue(int value) {
this.value = value;
}

}


package my.visualization.sort.select;

import javax.swing.JFrame;

public class SortApplication {
@SuppressWarnings("deprecation")
public static void main(String[] args) {
SelectSortVisualizationFrame frame = new SelectSortVisualizationFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.show();
}
}


程序代码也没有优化过,注释也基本上没有加,不好意思。大家如果有其它好的想法来实现排序的可视化,请共享一下哦。
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值