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!