天才算法之睡眠排序(C#实现)
C#多线程之睡眠排序
这个太吊了
不想多说了
让我先笑会
我也会写睡眠算法了。哈哈哈嗝~
下面代码引入
using System;
using System.Threading;
namespace SleepSort {
class SleepSortMainEntence {
static void Main (string[] args) {
int[] a = new int[] { 123, 243, 32, 443, 72, 3 };
foreach (var item in a) { // 遍历数组
Thread th = new Thread (x => {
Thread.Sleep (item * 10); //睡眠时间,时间越短,越不精确
System.Console.WriteLine (item); // 睡完输出
});
th.Start (); //开始线程
}
}
}
}