睡排序--利用线程sleep的时间排序

Posted zxwm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了睡排序--利用线程sleep的时间排序相关的知识,希望对你有一定的参考价值。

/*
* 睡排序
* 利用线程休眠(苏醒时间)将数排序
*/
public class Demo {
public static void main(String[] args) {
int[] sortNum = {-1,0,1,4,7,3,8,9,2,6,5,555};
SortThread[] sortThreads = new SortThread[sortNum.length];
for (int i = 0; i < sortThreads.length; i++) { //接收数字充当休眠时间
sortThreads[i] = new SortThread(sortNum[i]);
}
for (int i = 0; i < sortThreads.length; i++) {
sortThreads[i].start();
}
}

}

 

 

 

class SortThread extends Thread{
int num = 0;
public SortThread(int num){
this.num = num;
}
public void run(){
try {
sleep(num);
} catch (InterruptedException e) {

e.printStackTrace();
}
System.out.println(num);
}
}





























以上是关于睡排序--利用线程sleep的时间排序的主要内容,如果未能解决你的问题,请参考以下文章

多线程编程里的thread.sleep问题

排序问题

ForkJoinPool线程池工作原理

利用桶排序进行过河处理

Java多线程15:QueueBlockingQueue以及利用BlockingQueue实现生产者/消费者模型

wait方法和sleep方法的区别