一个简单的程序表现出排序算法 : 排序搜索 « 集合数据结构 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 集合数据结构 » 排序搜索屏幕截图 
一个简单的程序表现出排序算法
  
/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * @(#)SortItem.java  1.17f 95/04/10 James Gosling
 *
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies. Please refer to the file "copyright.html"
 * for further important copyright and licensing information.
 *
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
 * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
 * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
 */

import java.awt.Color;
import java.awt.Graphics;

/**
 * A simple applet class to demonstrate a sort algorithm. You can specify a
 * sorting algorithm using the "alg" attribyte. When you click on the applet, a
 * thread is forked which animates the sorting algorithm.
 
 @author James Gosling
 @version 1.17f, 10 Apr 1995
 */
public class SortItem extends java.applet.Applet implements Runnable {
  /**
   * The thread that is sorting (or null).
   */
  private Thread kicker;

  /**
   * The array that is being sorted.
   */
  int[] arr;

  /**
   * The high water mark.
   */
  int h1 = -1;

  /**
   * The low water mark.
   */
  int h2 = -1;

  /**
   * The name of the algorithm.
   */
  String algName;

  /**
   * The sorting algorithm (or null).
   */
  SortAlgorithm algorithm;

  /**
   * Fill the array with random numbers from 0..n-1.
   */
  void scramble() {
    int[] a = new int[size().height / 2];
    double f = size().width / (doublea.length;
    for (int i = a.length; --i >= 0;) {
      a[i(int) (i * f);
    }
    for (int i = a.length; --i >= 0;) {
      int j = (int) (i * Math.random());
      int t = a[i];
      a[i= a[j];
      a[j= t;
    }
    arr = a;
  }

  /**
   * Pause a while.
   
   @see SortAlgorithm
   */
  void pause() {
    pause(-1, -1);
  }

  /**
   * Pause a while, and draw the high water mark.
   
   @see SortAlgorithm
   */
  void pause(int H1) {
    pause(H1, -1);
  }

  /**
   * Pause a while, and draw the low&high water marks.
   
   @see SortAlgorithm
   */
  void pause(int H1, int H2) {
    h1 = H1;
    h2 = H2;
    if (kicker != null) {
      repaint();
    }
    try {
      Thread.sleep(20);
    catch (InterruptedException e) {
    }
  }

  /**
   * Initialize the applet.
   */
  public void init() {
    String at = getParameter("alg");
    if (at == null) {
      at = "BubbleSort";
    }

    algName = at + "Algorithm";
    scramble();

    setBackground(Color.white);

    resize(100100);
  }

  /**
   * Paint the array of numbers as a list of horizontal lines of varying
   * lenghts.
   */
  public void paint(Graphics g) {
    int[] a = arr;
    int y = size().height - 1;

    // Erase old lines
    g.setColor(Color.lightGray);
    for (int i = a.length; --i >= 0; y -= 2) {
      g.drawLine(arr[i], y, size().width, y);
    }

    // Draw new lines
    g.setColor(Color.black);
    y = size().height - 1;
    for (int i = a.length; --i >= 0; y -= 2) {
      g.drawLine(0, y, arr[i], y);
    }

    if (h1 >= 0) {
      g.setColor(Color.red);
      y = h1 * 1;
      g.drawLine(0, y, size().width, y);
    }
    if (h2 >= 0) {
      g.setColor(Color.blue);
      y = h2 * 1;
      g.drawLine(0, y, size().width, y);
    }
  }

  /**
   * Update without erasing the background.
   */
  public void update(Graphics g) {
    paint(g);
  }

  /**
   * Run the sorting algorithm. This method is called by class Thread once the
   * sorting algorithm is started.
   
   @see java.lang.Thread#run
   @see SortItem#mouseUp
   */
  public void run() {
    try {
      if (algorithm == null) {
        algorithm = (SortAlgorithmClass.forName(algName)
            .newInstance();
        algorithm.setParent(this);
      }
      algorithm.init();
      algorithm.sort(arr);
    catch (Exception e) {
    }
  }

  /**
   * Stop the applet. Kill any sorting algorithm that is still sorting.
   */
  public synchronized void stop() {
    if (kicker != null) {
      try {
        kicker.stop();
      catch (IllegalThreadStateException e) {
        // ignore this exception
      }
      kicker = null;
    }
    if (algorithm != null) {
      try {
        algorithm.stop();
      catch (IllegalThreadStateException e) {
        // ignore this exception
      }
    }
  }

  /**
   * For a Thread to actually do the sorting. This routine makes sure we do
   * not simultaneously start several sorts if the user repeatedly clicks on
   * the sort item. It needs to be synchronoized with the stop() method
   * because they both manipulate the common kicker variable.
   */
  private synchronized void startSort() {
    if (kicker == null || !kicker.isAlive()) {
      scramble();
      repaint();
      kicker = new Thread(this);
      kicker.start();
    }
  }

  /**
   * The user clicked in the applet. Start the clock!
   */
  public boolean mouseUp(java.awt.Event evt, int x, int y) {
    startSort();
    return true;
  }
}

/*
 * @(#)BidirectionalBubbleSortAlgorithm.java 1.6f 95/01/31 James Gosling
 
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for NON-COMMERCIAL purposes and without fee is hereby granted
 * provided that this copyright notice appears in all copies. Please refer to
 * the file "copyright.html" for further important copyright and licensing
 * information.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

/**
 * A bi-directional bubble sort demonstration algorithm SortAlgorithm.java, Thu
 * Oct 27 10:32:35 1994
 
 @author James Gosling
 @version 1.6f, 31 Jan 1995
 */

class BidirectionalBubbleSortAlgorithm extends SortAlgorithm {
  void sort(int[] athrows Exception {
    int j;
    int limit = a.length;
    int st = -1;
    while (st < limit) {
      boolean flipped = false;
      st++;
      limit--;
      for (j = st; j < limit; j++) {
        if (stopRequested) {
          return;
        }
        if (a[j> a[j + 1]) {
          int T = a[j];
          a[j= a[j + 1];
          a[j + 1= T;
          flipped = true;
          pause(st, limit);
        }
      }
      if (!flipped) {
        return;
      }
      for (j = limit; --j >= st;) {
        if (stopRequested) {
          return;
        }
        if (a[j> a[j + 1]) {
          int T = a[j];
          a[j= a[j + 1];
          a[j + 1= T;
          flipped = true;
          pause(st, limit);
        }
      }
      if (!flipped) {
        return;
      }
    }
    pause(st, limit);
  }
}

/*
 * @(#)SortAlgorithm.java 1.6f 95/01/31 James Gosling
 
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for NON-COMMERCIAL purposes and without fee is hereby granted
 * provided that this copyright notice appears in all copies. Please refer to
 * the file "copyright.html" for further important copyright and licensing
 * information.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

/**
 * A generic sort demonstration algorithm SortAlgorithm.java, Thu Oct 27
 * 10:32:35 1994
 
 @author James Gosling
 @version 1.6f, 31 Jan 1995
 */

class SortAlgorithm {
  /**
   * The sort item.
   */
  private SortItem parent;

  /**
   * When true stop sorting.
   */
  protected boolean stopRequested = false;

  /**
   * Set the parent.
   */
  public void setParent(SortItem p) {
    parent = p;
  }

  /**
   * Pause for a while.
   */
  protected void pause() throws Exception {
    if (stopRequested) {
      throw new Exception("Sort Algorithm");
    }
    parent.pause(parent.h1, parent.h2);
  }

  /**
   * Pause for a while and mark item 1.
   */
  protected void pause(int H1throws Exception {
    if (stopRequested) {
      throw new Exception("Sort Algorithm");
    }
    parent.pause(H1, parent.h2);
  }

  /**
   * Pause for a while and mark item 1 & 2.
   */
  protected void pause(int H1, int H2throws Exception {
    if (stopRequested) {
      throw new Exception("Sort Algorithm");
    }
    parent.pause(H1, H2);
  }

  /**
   * Stop sorting.
   */
  public void stop() {
    stopRequested = true;
  }

  /**
   * Initialize
   */
  public void init() {
    stopRequested = false;
  }

  /**
   * This method will be called to sort an array of integers.
   */
  void sort(int[] athrows Exception {
  }
}


/*
 * @(#)QSortAlgorithm.java  1.6f 95/01/31 James Gosling
 *
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies. Please refer to the file "copyright.html"
 * for further important copyright and licensing information.
 *
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
 * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
 * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
 */

/**
 * A quick sort demonstration algorithm
 * SortAlgorithm.java, Thu Oct 27 10:32:35 1994
 *
 @author James Gosling
 @version   1.6f, 31 Jan 1995
 */
class QSortAlgorithm extends SortAlgorithm {
    void sort(int[] a, int lo0, int hi0throws Exception {
  int lo = lo0;
  int hi = hi0;
  pause(lo, hi);
  if (lo >= hi) {
      return;
  }
  int mid = a[(lo + hi2];
  while (lo < hi) {
      while (lo<hi && a[lo< mid) {
    lo++;
      }
      while (lo<hi && a[hi> mid) {
    hi--;
      }
      if (lo < hi) {
    int T = a[lo];
    a[lo= a[hi];
    a[hi= T;
                lo++;
                hi--;
    pause();
      }
  }
  if (hi < lo) {
      int T = hi;
      hi = lo;
      lo = T;
  }
  sort(a, lo0, lo);
  sort(a, lo == lo0 ? lo+: lo, hi0);
    }

    void sort(int[] athrows Exception {
  sort(a, 0, a.length-1);
    }
}


/*
 * @(#)BubbleSortAlgorithm.java  1.6f 95/01/31 James Gosling
 *
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies. Please refer to the file "copyright.html"
 * for further important copyright and licensing information.
 *
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
 * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
 * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
 */

/**
 * A bubble sort demonstration algorithm
 * SortAlgorithm.java, Thu Oct 27 10:32:35 1994
 *
 @author James Gosling
 @version   1.6f, 31 Jan 1995
 */
class BubbleSortAlgorithm extends SortAlgorithm {
    void sort(int[] athrows Exception {
  for (int i = a.length; --i>=0)
      for (int j = 0; j<i; j++) {
    if (stopRequested) {
        return;
    }
    if (a[j> a[j+1]) {
        int T = a[j];
        a[j= a[j+1];
        a[j+1= T;
    }
    pause(i,j);
      }
  
    }
}

           
         
    
  
Related examples in the same category
1. 动画的快速排序
2. Quick Sort Implementation with median-of-three partitioning and cutoff for small arrays
3. 简单排序演示简单排序演示
4. 排序字符串数组排序字符串数组
5. 简单版本的快速排序简单版本的快速排序
6. Combine Quick Sort Insertion SortCombine Quick Sort Insertion Sort
7. 快速排序中位数的三个分区快速排序中位数的三个分区
8. 选择排序选择排序
9. 插入排序插入排序
10. 插入排序插入排序
11. 冒泡排序冒泡排序
12. 归并排序归并排序
13. 二进制搜索二进制搜索
14. 壳牌排序壳牌排序
15. Recursive Binary Search Implementation in Java
16. 拓扑排序拓扑排序
17. 堆排序堆排序
18. 排序号码排序号码
19. 快速排序算法演示快速排序算法演示
20. 二进制搜索Java的字节数组实例
21. 二进制搜索Java的字符数组实例
22. 二进制搜索Java的双精度数组
23. 二进制搜索Java的浮点数组
24. 二进制搜索Java的整型数组
25. 二进制搜索Java的长整型数组
26. Performing Binary Search on Java short Array
27. 对象排序数组
28. 排序的数组对象
29. 排序字符串数组
30. 字符串数组排序与整理
31. 自定义排序测试
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.