码迷,mamicode.com
首页 > 编程语言 > 详细

睡眠排序

时间:2019-12-15 11:07:48      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:getc   sleep   tac   thread   code   char   mes   turn   pre   

二半夜的有点失眠,来个睡眠排序 -_-||

#include <iostream>
#include <thread>
#include <windows.h>
#include <vector>
using namespace std;

void delay(int a)
{
    Sleep(a);
    cout << a <<"  ";
}

int main()
{
    int a[10] = { 30, 45, 23, 1, 43, 5, 7, 34, 32, 2 };

    for (int i = 0; i < 10; i++)
    {
        thread t(delay, a[i]);
        t.detach();
    }

    getchar();
    return 0;
}

睡眠排序

标签:getc   sleep   tac   thread   code   char   mes   turn   pre   

原文地址:https://www.cnblogs.com/tiandsp/p/12041760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!