漫画:三种 “奇葩” 的排序算法
The following article comes from 程序员小灰 Author 小灰
作者 | 小灰
来源 | 程序员小灰(ID:chengxuyuanxiaohui)
睡眠排序
public static void sleepSort(int[] array) {
for (int num: array) {
new Thread(() - > {
try {
Thread.sleep(num);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(num);
}).start();
}
}
public static void main(String[] args) {
int[] array = {10,30,50,60,100,40,150,200,70};
sleepSort(array);
}
猴子排序
珠排序
热 文 推 荐
☞我国自主开发的编程语言“木兰”是又一个披着“洋”皮的红芯浏览器吗?
☞小网站的容器化(上)