天才算法之睡眠排序(C#实现)

2021-12-28 15:21:32 浏览数 (1)

C#多线程之睡眠排序 这个太吊了 不想多说了 让我先笑会

我也会写睡眠算法了。哈哈哈嗝~

下面代码引入

csharp

代码语言:javascript复制
1using System;
2using System.Threading;
3namespace SleepSort {
4    class SleepSortMainEntence {
5        static void Main (string[] args) {
6            int[] a = new int[] { 123, 243, 32, 443, 72, 3 };
7            foreach (var item in a) {  // 遍历数组
8                Thread th = new Thread (x => {
9                    Thread.Sleep (item * 10); //睡眠时间,时间越短,越不精确
10                    System.Console.WriteLine (item); // 睡完输出
11                });
12                th.Start ();  //开始线程
13            }
14        }
15    }
16}

0 人点赞