Home  >  Article  >  Java  >  Java sorting algorithm SleepSort sorting example

Java sorting algorithm SleepSort sorting example

高洛峰
高洛峰Original
2017-01-18 16:55:451564browse

The example of this article describes the SleepSort sorting of Java sorting algorithm. Share it with everyone for your reference, the details are as follows:

Share a very creative sorting algorithm: sleepSort. The thread's sleep() is cleverly used. The code is as follows:

public class SleepSort {
  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    int[] ints = {1,4,7,3,8,9,2,6,5};
    SortThread[] sortThreads = new SortThread[ints.length];
    for(int i=0;i<sortThreads.length;i++) {
      sortThreads[i] = new SortThread(ints[i]);
    }
    for(int i=0;i<sortThreads.length;i++) {
      sortThreads[i].start();
    }
  }
}
class SortThread extends Thread {
  int ms = 0;
  public SortThread(int ms) {
    this.ms = ms;
  }
  public void run() {
    try {
      sleep(ms*10+10);
    } catch(InterruptedException e) {
      e.printStackTrace();
    }
    System.out.println(ms);
  }
}

I hope this article will be helpful to everyone in java programming.

For more articles related to the Java sorting algorithm SleepSort sorting example, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn